This repository has been archived on 2025-10-23. You can view files and clone it, but cannot push or open issues or pull requests.
Files
nub-lang-archive/example/main.nub
nub31 2af3782e32 ...
2025-09-11 21:50:49 +02:00

10 lines
121 B
Plaintext

module "main"
extern "puts" func puts(text: cstring)
func main(args: []cstring): i64
{
puts("test")
return 0
}