diff options
| author | Dave Gauer <[email protected]> | 2021-02-27 16:52:57 -0500 |
|---|---|---|
| committer | Dave Gauer <[email protected]> | 2021-02-27 16:52:57 -0500 |
| commit | 42e6ebd2fe6abd0e46b95baae332c869a2148205 (patch) | |
| tree | 6bb70a54e8099fa98fa787a27ba844a8c477c1f9 /build.zig | |
| parent | d2b4e7a87b6b5d42b95bcd5390c85615710c9a2d (diff) | |
| download | ziglings-42e6ebd2fe6abd0e46b95baae332c869a2148205.tar.xz ziglings-42e6ebd2fe6abd0e46b95baae332c869a2148205.zip | |
Add ex 47: methods
Diffstat (limited to 'build.zig')
| -rw-r--r-- | build.zig | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -40,7 +40,7 @@ const exercises = [_]Exercise{ .{ .main_file = "01_hello.zig", .output = "Hello world", - .hint = "Note the error: the source file has a hint for fixing 'main'.", + .hint = "DON'T PANIC!\nRead the error above.\nSee how it has something to do with 'main'?\nOpen up the source file as noted and read the comments.\nYou can do this!", }, .{ .main_file = "02_std.zig", @@ -243,9 +243,13 @@ const exercises = [_]Exercise{ .{ .main_file = "46_optionals2.zig", .output = "Elephant A. Elephant B. Elephant C.", - .hint = "Elephants!", + .hint = "Elephants again!", + }, + .{ + .main_file = "47_methods.zig", + .output = "5 aliens. 4 aliens. 1 aliens. 0 aliens. Earth is saved!", + .hint = "Use the heat ray. And the method!", }, - // super-simple struct method // use struct method for elephant tails // quiz: add elephant trunk (like tail)! }; |
