Files
nub-lang/example/src/main.nub
2025-09-12 17:08:10 +02:00

16 lines
205 B
Plaintext

module "main"
import "test"
export extern "puts" func puts(text: cstring)
export struct Test1
{
test2: ^test::Test2
}
extern "main" func main(args: []cstring): i64
{
puts("test")
return 0
}