mirror of
https://github.com/ziglang/zig.git
synced 2024-11-27 23:52:31 +00:00
378d3e4403
Changed container and initializer syntax * <container> { ... } -> <container> . { ... } * <exrp> { ... } -> <expr> . { ...}
7 lines
84 B
Zig
7 lines
84 B
Zig
pub const APubEnum = enum.{
|
|
One,
|
|
Two,
|
|
Three,
|
|
};
|
|
pub const size_t = u64;
|