Fixes
This commit is contained in:
parent
536f1afc44
commit
b3b98dfb01
@ -15,7 +15,7 @@ func main():
|
|||||||
empty := [:Int]
|
empty := [:Int]
|
||||||
|
|
||||||
>> empty
|
>> empty
|
||||||
= []
|
= [:Int]
|
||||||
|
|
||||||
# You can loop over an array with `for value in array`:
|
# You can loop over an array with `for value in array`:
|
||||||
sum := 0
|
sum := 0
|
||||||
|
@ -19,7 +19,7 @@ func main():
|
|||||||
# Tables can be empty but must have key and value types:
|
# Tables can be empty but must have key and value types:
|
||||||
empty := {:Text,Int}
|
empty := {:Text,Int}
|
||||||
>> empty
|
>> empty
|
||||||
= {}
|
= {:Text,Int}
|
||||||
|
|
||||||
# You can loop over tables:
|
# You can loop over tables:
|
||||||
total := 0
|
total := 0
|
||||||
|
Loading…
Reference in New Issue
Block a user