diff options
| author | Dave Gauer <dave@ratfactor.com> | 2021-11-07 20:52:39 -0500 |
|---|---|---|
| committer | Dave Gauer <dave@ratfactor.com> | 2021-11-07 20:52:39 -0500 |
| commit | 40656031c568b346b7eb47118be7c0dc04cc89b6 (patch) | |
| tree | 5866b7f3a15945a73b946443fbd490fc8f4cc2d8 /exercises/072_comptime7.zig | |
| parent | 7d29fd8ce4e2a2acd4863166b752b68d29994645 (diff) | |
| parent | c7868de51194b32a16ea6632bb737778ddb983bb (diff) | |
Merge branch 'main' of github.com:ratfactor/ziglings into main
Diffstat (limited to 'exercises/072_comptime7.zig')
| -rw-r--r-- | exercises/072_comptime7.zig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/exercises/072_comptime7.zig b/exercises/072_comptime7.zig index 06eb92e..147b935 100644 --- a/exercises/072_comptime7.zig +++ b/exercises/072_comptime7.zig @@ -49,7 +49,7 @@ pub fn main() void { '*' => value *= digit, else => unreachable, } - // ...But it's quite a bit more exciting than it first appears. + // ...But it's quite a bit more exciting than it first appears. // The 'inline while' no longer exists at runtime and neither // does anything else not touched directly by runtime // code. The 'instructions' string, for example, does not @@ -61,6 +61,6 @@ pub fn main() void { // code at compile time. Guess we're compiler writers // now. See? The wizard hat was justified after all. } - + print("{}\n", .{value}); } |
