Fixes
This commit is contained in:
parent
6c53216b98
commit
cc7cfaa4b6
@ -18,7 +18,10 @@ func main():
|
||||
>> y
|
||||
= ???
|
||||
|
||||
# Some functions return optional values:
|
||||
# Some functions return optional values.
|
||||
# Int.parse(text:Text -> Int?) is a function that returns
|
||||
# an integer value found in the text, or `none` if no integer
|
||||
# is found.
|
||||
>> Int.parse("123")
|
||||
= ???
|
||||
>> Int.parse("blah")
|
||||
|
@ -28,4 +28,4 @@ func main():
|
||||
= ???
|
||||
|
||||
>> (+: i for i in 10 if i:is_prime())!
|
||||
= 0
|
||||
= ???
|
||||
|
Loading…
Reference in New Issue
Block a user