This repository has been archived on 2025-10-23. You can view files and clone it, but cannot push or open issues or pull requests.
Files
nub-lang-archive/input/program.nub
nub31 774dcfa995 ...
2025-02-04 11:47:25 +01:00

19 lines
258 B
Plaintext

import "core";
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;
}