main.go 223 B

1234567891011121314
  1. package main
  2. import (
  3. "gitea.ligthert.net/golang/sudoku-funpark/solver"
  4. )
  5. func main() {
  6. // Set global logger parameters
  7. // log.SetFlags(log.LstdFlags | log.Lshortfile)
  8. // Run the meat of the program
  9. solver.Run()
  10. }