Fixes
This commit is contained in:
parent
04a491c551
commit
b981e479f1
2
koans.tm
2
koans.tm
@ -17,7 +17,7 @@ LESSONS := [
|
||||
Lesson((./lessons/lesson-06-arrays.tm), "Arrays"),
|
||||
Lesson((./lessons/lesson-07-optionals.tm), "Optionals"),
|
||||
Lesson((./lessons/lesson-08-tables.tm), "Tables"),
|
||||
Lesson((./lessons/lesson-09-text), "Text"),
|
||||
Lesson((./lessons/lesson-09-text.tm), "Text"),
|
||||
Lesson((./lessons/lesson-10-structs.tm), "Structs"),
|
||||
Lesson((./lessons/lesson-11-enums.tm), "Enums"),
|
||||
Lesson((./lessons/lesson-12-allocating.tm), "Allocating Memory"),
|
||||
|
@ -26,7 +26,7 @@ func main():
|
||||
= ???
|
||||
|
||||
# Array comprehensions let you transform arrays concisely:
|
||||
squares := [n + 1 for n in nums]
|
||||
squares := [n*n for n in nums]
|
||||
|
||||
>> squares
|
||||
= [???]
|
||||
|
@ -7,7 +7,7 @@ func main():
|
||||
|
||||
x := 42?
|
||||
>> x
|
||||
= x
|
||||
= 42
|
||||
|
||||
# You can assign a `none` value to `x` because it has type `Int?`
|
||||
x = none
|
||||
|
Loading…
Reference in New Issue
Block a user