mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-16 07:14:07 +10:00
18 lines
193 B
Plaintext
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 ]]];
|
|
|
|
|
|
|
|
|