sudoku-funpark/main.go

15 lines
223 B
Go
Raw 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
// Set global logger parameters
2025-01-23 20:26:43 +01:00
// log.SetFlags(log.LstdFlags | log.Lshortfile)
2025-01-21 21:43:27 +01:00
// Run the meat of the program
solver.Run()
2024-12-06 19:28:24 +01:00
}