This commit is contained in:
Bruce Hill 2025-03-25 16:46:38 -04:00
parent 536f1afc44
commit b3b98dfb01
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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