First commit

This commit is contained in:
2024-10-21 23:08:52 -04:00
commit 82b33f3c9a
6 changed files with 244 additions and 0 deletions

15
misc.go Normal file
View File

@@ -0,0 +1,15 @@
package main
import (
"unicode"
)
func isAlphaNum(c rune) bool {
return unicode.IsLetter(c) || unicode.IsNumber(c)
}
func assert(cond bool) {
if cond != true {
panic("Assertion Failed")
}
}