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
2025-01-30 16:33:06 +01:00

11 lines
149 B
Plaintext

import "core";
func main() {
let x = new Array<String>(2);
x[1] = "test1";
x[2] = "test2";
println(x[1]);
println(x[2]);
}