5 lines
104 B
Text
5 lines
104 B
Text
var a = 255
|
|
var b = 0xff
|
|
var c = 0255 // not an octal literal
|
|
var d = 2.55e2
|
|
System.print([a, b, c, d])
|