From 88886a37d9721763326ff80a7b2c127e4a8cb8ae Mon Sep 17 00:00:00 2001 From: Jonathan Halmen Date: Fri, 5 Nov 2021 16:44:29 +0100 Subject: fix whitespace line-endings --- exercises/072_comptime7.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'exercises/072_comptime7.zig') 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}); } -- cgit v1.2.3-ZIG