Mainly to get rid of one top level directory. But this will also be useful when there are tests of the embedding API.
6 lines
187 B
Plaintext
6 lines
187 B
Plaintext
IO.print((0..0).isInclusive) // expect: true
|
|
IO.print((0...0).isInclusive) // expect: false
|
|
|
|
IO.print((-1..1).isInclusive) // expect: true
|
|
IO.print((-1...1).isInclusive) // expect: false
|