This commit is contained in:
nub31
2025-06-02 14:31:05 +02:00
parent 8e522265ff
commit 9f7bc4d2d5
3 changed files with 13 additions and 31 deletions

12
example/main.nub Normal file
View File

@@ -0,0 +1,12 @@
namespace main
export func main(args: []^string) {
c::printf("%d\n", args.count)
let i: i64
while i < args.count {
c::printf("%s\n", args[i])
i += 1
}
}