This commit is contained in:
Adam Millerchip 2022-01-02 19:28:21 +09:00
parent 274a93c0d9
commit 000ca65912
1 changed files with 5 additions and 5 deletions

View File

@ -20,11 +20,11 @@
const print = @import("std").debug.print;
pub fn main() void {
const 55_cows: i32 = 55;
const isn't true: bool = false;
const @"55_cows": i32 = 55;
const @"isn't true": bool = false;
print("Sweet freedom: {}, {}.\n", .{
55_cows,
isn't true,
@"55_cows",
@"isn't true",
});
}