...
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user