Changed dict type syntax to using a colon instead of a comma

This commit is contained in:
2022-09-04 09:00:55 +01:00
parent d12ad4f60d
commit 36154b25ac
6 changed files with 7 additions and 6 deletions

View File

@@ -62,7 +62,7 @@
//test dictionaries with types
var dict: [string, string] = [:];
var dict: [string : string] = [:];
_set(dict, "key", "value");