mirror of
https://github.com/ziglang/zig.git
synced 2024-11-26 23:22:44 +00:00
8 lines
113 B
Zig
8 lines
113 B
Zig
|
// normal integer
|
||
|
const normal_int: i32 = 1234;
|
||
|
|
||
|
// optional integer
|
||
|
const optional_int: ?i32 = 5678;
|
||
|
|
||
|
// syntax
|