The any type is now recognized as a type properly

This commit is contained in:
2023-06-19 23:16:46 +10:00
parent 2157b2f540
commit f6ec6a8c73
2 changed files with 14 additions and 1 deletions

View File

@@ -22,4 +22,9 @@ var dict: complex = [
"third array": [7, 8, 9]
];
//check the any type is recognized as a type within an array
var a: [type] = [int, bool, any];
print "All good";