2024-12-05 17:46:09 +01:00
|
|
|
package main
|
|
|
|
|
2025-01-21 21:43:27 +01:00
|
|
|
import (
|
|
|
|
"log"
|
|
|
|
|
|
|
|
"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
|
|
|
|
|
|
|
// Set global logger parameters
|
|
|
|
log.SetFlags(log.LstdFlags | log.Lmicroseconds | log.Lshortfile)
|
|
|
|
|
|
|
|
// Run the meat of the program
|
2024-12-07 19:23:45 +01:00
|
|
|
solver.Run()
|
2024-12-06 19:28:24 +01:00
|
|
|
}
|