sudoku-funpark/main.go

17 lines
248 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 (
"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
solver.Run()
2024-12-06 19:28:24 +01:00
}