summaryrefslogtreecommitdiff
path: root/exercises/072_comptime7.zig
diff options
context:
space:
mode:
authorDave Gauer <ratfactor@gmail.com>2021-11-07 19:38:47 -0500
committerGitHub <noreply@github.com>2021-11-07 19:38:47 -0500
commitc7868de51194b32a16ea6632bb737778ddb983bb (patch)
treeb89a125af4973d0a7b40121298c8f4fd8e8c9988 /exercises/072_comptime7.zig
parent4c7eebbbfca3337b5e3af33eb34979dc56716178 (diff)
parentf8b8531930ff017554ceb1c6436d7776e8f79388 (diff)
Merge pull request #77 from jhalmen/fmt
whitespaces and zig fmt
Diffstat (limited to 'exercises/072_comptime7.zig')
-rw-r--r--exercises/072_comptime7.zig4
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});
}