mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-18 13:49:59 +01:00
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
|