16 lines
215 B
Plaintext
16 lines
215 B
Plaintext
import "core";
|
|
|
|
struct Human {
|
|
let name: String;
|
|
let age: int64;
|
|
}
|
|
|
|
func main() {
|
|
while true {
|
|
let x = new Human
|
|
{
|
|
name = "test",
|
|
age = 34958743
|
|
};
|
|
}
|
|
} |