This channel is intended for people just starting with the Raku Programming Language (raku.org). Logs are available at irclogs.raku.org/raku-beginner/live.html
Set by lizmat on 8 June 2022.
deoac ``` 22:26
[10] > (1, 10, 100 ... Inf).infinite
No such method 'infinite' for invocant of type 'Seq'
  in block <unit> at <unknown file> line 1
[10] > (1, 10, 100 ... Inf).?infinite
Nil
```
What is the meaning of `.?` ?
Nemokosch That missing methods will return Nil rather than throw an exception 22:29
deoac Thank you.  Where is it mentioned in the docs?  I couldn't find it. 22:33