diff options
author | Dave Gauer <dave@ratfactor.com> | 2021-05-09 14:25:51 -0400 |
---|---|---|
committer | Dave Gauer <dave@ratfactor.com> | 2021-05-09 14:25:51 -0400 |
commit | b86230d1609d0eb8a6356f6e988c3b06d1e7342f (patch) | |
tree | 0db501ff243a2b3b1809cad108e961e27cdd51ad /patches | |
parent | da3ec19000ee124371793ec3e846e5c2c1b164c2 (diff) | |
download | ziglings-b86230d1609d0eb8a6356f6e988c3b06d1e7342f.tar.gz ziglings-b86230d1609d0eb8a6356f6e988c3b06d1e7342f.tar.bz2 ziglings-b86230d1609d0eb8a6356f6e988c3b06d1e7342f.tar.xz ziglings-b86230d1609d0eb8a6356f6e988c3b06d1e7342f.zip |
add ex081 anon structs 2
Diffstat (limited to 'patches')
-rw-r--r-- | patches/patches/081_anonymous_structs2.patch | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/patches/patches/081_anonymous_structs2.patch b/patches/patches/081_anonymous_structs2.patch new file mode 100644 index 0000000..b9890d6 --- /dev/null +++ b/patches/patches/081_anonymous_structs2.patch @@ -0,0 +1,8 @@ +41c41 +< fn printCircle(???) void { +--- +> fn printCircle(circle: anytype) void { +44c44 +< circle.centaur_y, +--- +> circle.center_y, |