Fix archive issues in cli

This commit is contained in:
nub31
2025-08-18 21:25:03 +02:00
parent 37dd110bb6
commit 7ed1b80c32
8 changed files with 51 additions and 34 deletions

View File

@@ -1,8 +1,19 @@
// c
extern func puts(text: cstring)
struct Human {
name: cstring
age: u32
}
func main(args: []cstring): i64
{
puts("Hello, World")
let x: Human = struct {
name = "Oliver"
age = 23
}
puts(x.name)
return 0
}