1// normal integer 2const normal_int: i32 = 1234; 3 4// optional integer 5const optional_int: ?i32 = 5678; 6 7// syntax