mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-11 06:08:41 +01:00
10 lines
283 B
Plaintext
10 lines
283 B
Plaintext
var x = 0xFF
|
|
|
|
System.print(x) // expect: 255
|
|
System.print(x + 1) // expect: 256
|
|
System.print(x == 255) // expect: true
|
|
System.print(0x09 is Num) // expect: true
|
|
System.print(x is Num) // expect: true
|
|
System.print(-0xFF) // expect: -255
|
|
System.print(0xdeadbeef) // expect: 3735928559
|