This repository has been archived on 2025-10-24. You can view files and clone it, but cannot push or open issues or pull requests.
Files
nub-lang-archive-2/example/src/main.nub
nub31 d068468e02 ...
2025-09-09 15:33:33 +02:00

13 lines
144 B
Plaintext

// c
extern func puts(text: cstring)
func main(args: []cstring): i64
{
let x: u32 = 23
test(x)
return 0
}
func test(test: u32)
{
}