odin: scaffold project with CLI parser, version command, Go fallback

This commit is contained in:
2026-06-11 20:16:00 -04:00
parent 28f96df4c0
commit d84e43d044
10 changed files with 365 additions and 3 deletions

7
tty.odin Normal file
View File

@@ -0,0 +1,7 @@
package main
import "core:sys/posix"
is_tty :: proc() -> bool {
return bool(posix.isatty(1))
}