This commit is contained in:
nub31
2025-07-02 18:58:28 +02:00
parent 6003fa2f51
commit a5e8ae9b8b
9 changed files with 91 additions and 274 deletions

View File

@@ -1,6 +1,25 @@
namespace main
export func main(args: []cstring): i64 {
c::puts("test")
struct Human
{
name: cstring
age: i64
}
func test() {
}
export func main(args: []cstring): i64
{
let x: []cstring
x = [2]cstring
x[0] = "test1"
x[1] = "test2"
c::puts(x[1])
return 0
}