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 9f40d8a9c9 ...
2025-07-02 23:44:59 +02:00

15 lines
142 B
Plaintext

namespace main
struct Human
{
name: cstring
age: i64
}
export func main(args: []cstring): i64
{
c::puts("john")
return 0
}