diff options
author | Dave Gauer <ratfactor@gmail.com> | 2022-07-31 09:36:17 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-31 09:36:17 -0400 |
commit | 93ca5f4c44281d372ba4c52f43c75030e18131f6 (patch) | |
tree | 2462779759df361618986b89709db8090c1cf5cf /exercises | |
parent | 4a89f2cc517187e3c97b15ae7043cb299e88a43f (diff) | |
parent | c50e7ac176e663197859706f83b7f6404f7df2e9 (diff) | |
download | ziglings-93ca5f4c44281d372ba4c52f43c75030e18131f6.tar.gz ziglings-93ca5f4c44281d372ba4c52f43c75030e18131f6.tar.bz2 ziglings-93ca5f4c44281d372ba4c52f43c75030e18131f6.tar.xz ziglings-93ca5f4c44281d372ba4c52f43c75030e18131f6.zip |
Merge pull request #102 from deforde/whitespace-fix
Remove trailing whitespace.
Diffstat (limited to 'exercises')
-rw-r--r-- | exercises/079_quoted_identifiers.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/079_quoted_identifiers.zig b/exercises/079_quoted_identifiers.zig index 9ef22b0..182c7ff 100644 --- a/exercises/079_quoted_identifiers.zig +++ b/exercises/079_quoted_identifiers.zig @@ -22,7 +22,7 @@ const print = @import("std").debug.print; pub fn main() void { const 55_cows: i32 = 55; const isn't true: bool = false; - + print("Sweet freedom: {}, {}.\n", .{ 55_cows, isn't true, |