Update quick-start-guide.md

typo
This commit is contained in:
2022-11-04 15:01:55 +11:00
committed by GitHub
parent 32d1f06700
commit 42835ce4d7

View File

@@ -31,7 +31,7 @@ Larger containers of data are available - arrays and dictionaries. Arrays are co
``` ```
var array = []; //define an array var array = []; //define an array
var dict = [:]; //define a a dictionary var dict = [:]; //define a dictionary
dict["foo"] = "bar"; //you can use indexing to add to a dictionary dict["foo"] = "bar"; //you can use indexing to add to a dictionary
array.push(42); //you must use a function to push to an array array.push(42); //you must use a function to push to an array