1 integer 1 integer 123 integer 12345 2 identifier A123 identifier A_A 3 4 COMMENT /*XXXX*/ 5 COMMENT //XXXX 6 7 COMMENT /*MULTI LINE*/ 8 9 [ [ 10 ] ] 11 * * 12 . . 13 ( ( 14 ) ) 15 { { 16 } } 17 [ [ 18 ] ] 19 , , 20 ; ; 21 : : 22 = = 23 + + 24 - - 25 / / 26 ~ ~ 27 | | 28 & & 29 ^ ^ 30 > > 31 < < 32 33 LSHIFT << 34 RSHIFT >> 35 ELLIPSIS ... 36 37 float 1.1 38 float 1e1 39 float -1.1 40 float -1e1 41 float 1e-1 42 float -1e-1 43 float 1.0e1 44 float -1.0e-1 45 46 integer 00 47 integer 01 48 integer 0123 49 50 identifier blah 51