diff options
author | Dave Gauer <ratfactor@gmail.com> | 2021-11-07 19:38:47 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-07 19:38:47 -0500 |
commit | dedd787f2dd0badc03caa1299adaf57eaeaae156 (patch) | |
tree | b89a125af4973d0a7b40121298c8f4fd8e8c9988 /exercises/069_comptime4.zig | |
parent | 4147a9a39b362468cc6f16c8ce751ee3481321f4 (diff) | |
parent | f6de68a1f23722457a0432ce520da668a50b2132 (diff) | |
download | ziglings-dedd787f2dd0badc03caa1299adaf57eaeaae156.tar.gz ziglings-dedd787f2dd0badc03caa1299adaf57eaeaae156.tar.bz2 ziglings-dedd787f2dd0badc03caa1299adaf57eaeaae156.tar.xz ziglings-dedd787f2dd0badc03caa1299adaf57eaeaae156.zip |
Merge pull request #77 from jhalmen/fmt
whitespaces and zig fmt
Diffstat (limited to 'exercises/069_comptime4.zig')
-rw-r--r-- | exercises/069_comptime4.zig | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/exercises/069_comptime4.zig b/exercises/069_comptime4.zig index c1efa46..ecec2ee 100644 --- a/exercises/069_comptime4.zig +++ b/exercises/069_comptime4.zig @@ -13,14 +13,14 @@ // const print = @import("std").debug.print; -pub fn main() void { +pub fn main() void { // Here we declare arrays of three different types and sizes // at compile time from a function call. Neat! const s1 = makeSequence(u8, 3); // creates a [3]u8 const s2 = makeSequence(u32, 5); // creates a [5]u32 const s3 = makeSequence(i64, 7); // creates a [7]i64 - print("s1={any}, s2={any}, s3={any}\n", .{s1, s2, s3}); + print("s1={any}, s2={any}, s3={any}\n", .{ s1, s2, s3 }); } // This function is pretty wild because it executes at runtime @@ -49,6 +49,6 @@ fn makeSequence(comptime T: type, ??? size: usize) [???]T { while (i < size) : (i += 1) { sequence[i] = @intCast(T, i) + 1; } - + return sequence; } |