This commit is contained in:
nub31
2025-09-11 23:34:13 +02:00
parent 0fd1af7e60
commit adcc9f3580
7 changed files with 95 additions and 31 deletions

14
example/src/main.nub Normal file
View File

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