Rebuilding with Tree Browser

This commit is contained in:
2026-01-29 20:43:32 -06:00
parent abf21d8e1b
commit 330a2e3ddf
3 changed files with 410 additions and 28 deletions

View File

@@ -31,3 +31,10 @@ var Sep = string(os.PathSeparator)
func Path(parts ...string) string {
return strings.Join(parts, Sep)
}
func MaxI(a, b int) int {
if a < b {
return b
}
return a
}