This commit is contained in:
nub31
2025-06-07 19:05:11 +02:00
parent 8ea26cea2e
commit 75c4473a5b
15 changed files with 1275 additions and 208 deletions

View File

@@ -1,15 +1,5 @@
namespace main
struct Human {
name: string
age: i64
}
export func main(args: []^string) {
let me = alloc Human {
name = "oliver"
age = 32
}
c::printf("%s is %d years old\n", me.name, me.age)
sys::call(60, 0)
}