diff options
author | Dave Gauer <ratfactor@gmail.com> | 2021-03-05 09:19:48 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-05 09:19:48 -0500 |
commit | adee7614160a0ff8766e060c385d14ba4f182b93 (patch) | |
tree | 079e653978243511b4d545dc3c72e3e74aec971a /exercises | |
parent | 6d4d7556f820bdddc239cf4d78a59289e21e4f15 (diff) | |
parent | 4a6d22f226c91aebf21692d1b0ca7ceb98c9e89c (diff) | |
download | ziglings-adee7614160a0ff8766e060c385d14ba4f182b93.tar.gz ziglings-adee7614160a0ff8766e060c385d14ba4f182b93.tar.bz2 ziglings-adee7614160a0ff8766e060c385d14ba4f182b93.tar.xz ziglings-adee7614160a0ff8766e060c385d14ba4f182b93.zip |
Merge pull request #31 from drforester/main
found a Zig enum with a method
Diffstat (limited to 'exercises')
-rw-r--r-- | exercises/48_methods2.zig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/exercises/48_methods2.zig b/exercises/48_methods2.zig index 37b182c..14192f6 100644 --- a/exercises/48_methods2.zig +++ b/exercises/48_methods2.zig @@ -66,3 +66,6 @@ fn visitElephants(first_elephant: *Elephant) void { // name or alias in a comment below this one and make a // pull request on GitHub for a piece of eternal Ziglings // glory. The first five (5) PRs will be accepted! + +drforester - I found one in the Zig source. See link below: +https://github.com/ziglang/zig/blob/041212a41cfaf029dc3eb9740467b721c76f406c/src/Compilation.zig#L2495 |