cli improvements

This commit is contained in:
nub31
2025-08-18 17:38:51 +02:00
parent f80be58fed
commit 37dd110bb6
6 changed files with 62 additions and 105 deletions

8
example/src/main.nub Normal file
View File

@@ -0,0 +1,8 @@
// c
extern func puts(text: cstring)
func main(args: []cstring): i64
{
puts("Hello, World")
return 0
}