8 lines
225 B
Text
8 lines
225 B
Text
/**
|
|
Integer literals, in Neko
|
|
Base 10 and Base 16, no leading zero octal in Neko
|
|
*/
|
|
|
|
var num = 2730
|
|
if (num == 02730) $print("base 10, even with leading zero\n")
|
|
if (num == 0xAAA) $print("base 16, with leading 0x or 0X\n")
|