Open Nathan-Wall opened 10 years ago
(0..2) in [ 'a', 'b', 'c' ] should evaluate to true.
(0..2) in [ 'a', 'b', 'c' ]
true
Note that the parens are a bit annoying, but are currently needed due to ..'s super low precedence. See #46 for a discussion about changing this.
..
(0..2) in [ 'a', 'b', 'c' ]
should evaluate totrue
.Note that the parens are a bit annoying, but are currently needed due to
..
's super low precedence. See #46 for a discussion about changing this.