optional_integer.zig (113B) - Raw
1 // normal integer 2 const normal_int: i32 = 1234; 3 4 // optional integer 5 const optional_int: ?i32 = 5678; 6 7 // syntax