From 618eade1e625f99364f1cde26e79d37eb1eb4040 Mon Sep 17 00:00:00 2001 From: Dave Gauer Date: Wed, 21 Apr 2021 20:08:34 -0400 Subject: add ex070 comptime 5 --- build.zig | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'build.zig') diff --git a/build.zig b/build.zig index 5610997..fa70eb3 100644 --- a/build.zig +++ b/build.zig @@ -348,6 +348,11 @@ const exercises = [_]Exercise{ .main_file = "069_comptime4.zig", .output = "s1={ 1, 2, 3 }, s2={ 1, 2, 3, 4, 5 }, s3={ 1, 2, 3, 4, 5, 6, 7 }", }, + .{ + .main_file = "070_comptime5.zig", + .output = "\"Quack.\" ducky1: true, \"Squeek!\" ducky2: true, ducky3: false", + .hint = "Have you kept the wizard hat on?", + }, }; /// Check the zig version to make sure it can compile the examples properly. -- cgit v1.2.3-ZIG