Files
Toy/scripts/small.toy
2022-09-06 20:43:45 +10:00

11 lines
86 B
Plaintext

var t: type = typeas [[int]];
var a: t = [
[1, 2, 3]
];
print a;
print typeof a;