mirror of
https://github.com/ziglang/zig.git
synced 2024-11-26 23:22:44 +00:00
10 lines
149 B
Zig
10 lines
149 B
Zig
const std = @import("std");
|
|
|
|
pub fn main() void {
|
|
var byte: u8 = 255;
|
|
byte += 1;
|
|
std.debug.print("value: {}\n", .{byte});
|
|
}
|
|
|
|
// exe=fail
|