Start of godoc comments. Closes #5

This commit is contained in:
Sacha Ligthert 2025-01-27 18:41:15 +01:00
parent c73c88679a
commit c72bc6b0e5
2 changed files with 2 additions and 0 deletions

View File

@ -6,6 +6,7 @@ import (
"strconv" "strconv"
) )
// The main loop that orchastrates all the logic.
func Run() { func Run() {
// Instantiate the Solver interface // Instantiate the Solver interface
solver := Solver{} solver := Solver{}

View File

@ -4,6 +4,7 @@ import (
"sync/atomic" "sync/atomic"
) )
// Struct/Interface containing all the important variabes it functions need access to.
type Solver struct { type Solver struct {
blocks []int blocks []int
row1 string row1 string