mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-04-26 13:01:34 +03: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
|