This commit is contained in:
nub31
2025-05-03 20:37:47 +02:00
parent bc2d858c5a
commit 248f95fa6e
2 changed files with 44 additions and 60 deletions

View File

@@ -1,19 +1,16 @@
import "core";
struct Human {
let name: String;
let age: int64;
}
func main() {
let i = 1;
while true {
let x = new Human
{
name = "test",
age = 34958743
};
i = i + 1;
}
}
struct Human {
let name: String;
let age: int64;
}