diff options
author | Dave Gauer <ratfactor@gmail.com> | 2022-07-31 09:41:17 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-31 09:41:17 -0400 |
commit | d8b405c2786e35d027542e86ed95c86ad38cd1d6 (patch) | |
tree | 1ae2f12effc2b28b5bb89b83ae1e05e2ebd19603 /build.zig | |
parent | 93afa4a25f939565b6ec9a614a29cf260584a2e1 (diff) | |
parent | d8b15dc0b6b61332f3c333a385d05a946e8e2866 (diff) | |
download | ziglings-d8b405c2786e35d027542e86ed95c86ad38cd1d6.tar.gz ziglings-d8b405c2786e35d027542e86ed95c86ad38cd1d6.tar.bz2 ziglings-d8b405c2786e35d027542e86ed95c86ad38cd1d6.tar.xz ziglings-d8b405c2786e35d027542e86ed95c86ad38cd1d6.zip |
Merge pull request #104 from lkadalski/patch-2
fix: wrong expected output in exercise 004
Diffstat (limited to 'build.zig')
-rw-r--r-- | build.zig | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -64,7 +64,7 @@ const exercises = [_]Exercise{ }, .{ .main_file = "004_arrays.zig", - .output = "Fourth: 7, Length: 8", + .output = "First: 2, Fourth: 7, Length: 8", .hint = "There are two things to complete here.", }, .{ |