sudoku-funpark/main.go

11 lines
139 B
Go
Raw Permalink Normal View History

2024-12-05 17:46:09 +01:00
package main
2025-01-21 21:43:27 +01:00
import (
"gitea.ligthert.net/golang/sudoku-funpark/solver"
)
2024-12-05 17:46:09 +01:00
func main() {
2025-01-21 21:43:27 +01:00
// Run the meat of the program
solver.Run()
2024-12-06 19:28:24 +01:00
}