Files
Toy/test/sample_code.toy
2022-08-29 21:38:54 +10:00

18 lines
193 B
Plaintext

var complex: type = type [string, [int]];
var dict: complex = [
"first array": [1, 2, 3],
"second array": [4, 5, 6],
"third array": [7, 8, 9]
];
var deep: type = type [[[ int ]]];