int smallArray[0x03]; // declaring array of int with size 3
Produces:
--------------------------- Compile error --------------------------- Can't compile "World" script module! scriptFile.c(1): Expected numeric constant ---------------------------
Fix: Hex literals need to be converted to int literals first to work with the existing parser/compiler. ... or just make it understand hex.