This commit is contained in:
Adam Millerchip 2021-12-31 23:48:48 +09:00
parent 65b308aadc
commit 695d624ff3
1 changed files with 4 additions and 4 deletions

View File

@ -18,10 +18,10 @@
const print = @import("std").debug.print;
pub fn main() void {
var zig = [_]u8 {
0o131, // octal
0b1101000, // binary
0x66, // hex
var zig = [_]u8{
0o132, // octal
0b1101001, // binary
0x67, // hex
};
print("{s} is cool.\n", .{zig});