Did a lot of work off-repo, basically init

This commit is contained in:
Luke I. Wilson
2021-03-11 13:27:35 -06:00
parent 2e9b2ad2b1
commit d0bb43cc8f
16 changed files with 1788 additions and 0 deletions

10
util.go Normal file
View File

@@ -0,0 +1,10 @@
package main
// Max returns the larger of two integers.
func Max(a, b int) int {
if a > b {
return a
} else {
return b
}
}