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/example/program.nub
nub31 248f95fa6e ...
2025-05-03 20:37:47 +02:00

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
};
}
}