aboutsummaryrefslogtreecommitdiff
path: root/build.zig
diff options
context:
space:
mode:
authorDave Gauer <ratfactor@gmail.com>2021-07-21 11:27:51 -0400
committerGitHub <noreply@github.com>2021-07-21 11:27:51 -0400
commitee4254bcff3475e721b2e21dce6811b41be3cb68 (patch)
tree15726b89c26348e50a60a5e82c6b1e6dccf45584 /build.zig
parent613d77b7f8765c0e0bf0cf6fb1fa67d7870a5861 (diff)
parent1cc0b3866640100d727b2b028a35a813621c0901 (diff)
downloadziglings-ee4254bcff3475e721b2e21dce6811b41be3cb68.tar.gz
ziglings-ee4254bcff3475e721b2e21dce6811b41be3cb68.tar.bz2
ziglings-ee4254bcff3475e721b2e21dce6811b41be3cb68.tar.xz
ziglings-ee4254bcff3475e721b2e21dce6811b41be3cb68.zip
Merge pull request #66 from Airbus5717/main
added newline print to make output look nicer
Diffstat (limited to 'build.zig')
-rw-r--r--build.zig18
1 files changed, 9 insertions, 9 deletions
diff --git a/build.zig b/build.zig
index 0f9adce..70127ad 100644
--- a/build.zig
+++ b/build.zig
@@ -280,7 +280,7 @@ const exercises = [_]Exercise{
},
.{
.main_file = "052_slices.zig",
- .output = "Hand1: A 4 K 8 Hand2: 5 2 Q J",
+ .output = "Hand1: A 4 K 8 \nHand2: 5 2 Q J",
},
.{
.main_file = "053_slices2.zig",
@@ -302,10 +302,10 @@ const exercises = [_]Exercise{
.main_file = "057_unions3.zig",
.output = "Insect report! Ant alive is: true. Bee visited 17 flowers.",
},
- .{
- .main_file = "058_quiz7.zig",
- .output = "Archer's Point--2->Bridge--1->Dogwood Grove--3->Cottage--2->East Pond--1->Fox Pond",
- .hint = "This is the biggest program we've seen yet. But you can do it!"
+ .{
+ .main_file = "058_quiz7.zig",
+ .output = "Archer's Point--2->Bridge--1->Dogwood Grove--3->Cottage--2->East Pond--1->Fox Pond",
+ .hint = "This is the biggest program we've seen yet. But you can do it!"
},
.{
.main_file = "059_integers.zig",
@@ -336,10 +336,10 @@ const exercises = [_]Exercise{
.main_file = "065_builtins2.zig",
.output = "A Narcissus loves all Narcissuses. He has room in his heart for: me myself.",
},
- .{
- .main_file = "066_comptime.zig",
- .output = "Immutable: 12345, 987.654; Mutable: 54321, 456.789; Types: comptime_int, comptime_float, u32, f32",
- .hint = "It may help to read this one out loud to your favorite stuffed animal until it sinks in completely."
+ .{
+ .main_file = "066_comptime.zig",
+ .output = "Immutable: 12345, 987.654; Mutable: 54321, 456.789; Types: comptime_int, comptime_float, u32, f32",
+ .hint = "It may help to read this one out loud to your favorite stuffed animal until it sinks in completely."
},
.{
.main_file = "067_comptime2.zig",