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
144 B
Plaintext
6 lines
144 B
Plaintext
IO.print(1.isNan) // expect: false
|
|
IO.print((0/0).isNan) // expect: true
|
|
|
|
// Infinity is not NaN.
|
|
IO.print((1/0).isNan) // expect: false
|