main.go 139 B

12345678910
  1. package main
  2. import (
  3. "gitea.ligthert.net/golang/sudoku-funpark/solver"
  4. )
  5. func main() {
  6. // Run the meat of the program
  7. solver.Run()
  8. }