2015-01-24 22:07:23 -08:00
|
|
|
var x = 0xFF
|
|
|
|
|
|
2015-09-15 07:46:09 -07:00
|
|
|
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
|
2017-01-12 21:53:21 -08:00
|
|
|
System.print(-0xFF) // expect: -255
|
|
|
|
|
System.print(0xdeadbeef) // expect: 3735928559
|