mirror of
https://codeberg.org/ziglings/exercises.git
synced 2025-01-28 01:16:02 +00:00
18 lines
519 B
Diff
18 lines
519 B
Diff
--- exercises/079_quoted_identifiers.zig 2023-10-03 22:15:22.125574535 +0200
|
|
+++ answers/079_quoted_identifiers.zig 2023-10-05 20:04:07.199436232 +0200
|
|
@@ -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",
|
|
});
|
|
}
|