This commit is contained in:
Bruce Hill 2025-03-25 14:17:14 -04:00
parent 6c53216b98
commit cc7cfaa4b6
2 changed files with 5 additions and 2 deletions

View File

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

View File

@ -28,4 +28,4 @@ func main():
= ???
>> (+: i for i in 10 if i:is_prime())!
= 0
= ???