aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/38_structs2.zig
diff options
context:
space:
mode:
authorDave Gauer <dave@ratfactor.com>2021-02-08 20:35:28 -0500
committerDave Gauer <dave@ratfactor.com>2021-02-08 20:35:28 -0500
commitcf0920de31e9b5f3c5ba6de19a1b4c8d0c58b907 (patch)
treed0c1af19e12e503a6d720b8e8ef487966e4c7d75 /38_structs2.zig
parentadf5ddb27df7f5a22b0b7d3321dfc8bca1e7937a (diff)
Added Ex. 38-43 for pointers, updated README
Added topics beyond the language basics from ziglearn.org to the README. That's a lot of exercises. I'd like to keep it under 100, though!
Diffstat (limited to '38_structs2.zig')
-rw-r--r--38_structs2.zig2
1 files changed, 0 insertions, 2 deletions
diff --git a/38_structs2.zig b/38_structs2.zig
index 9a67c25..b6def93 100644
--- a/38_structs2.zig
+++ b/38_structs2.zig
@@ -48,6 +48,4 @@ pub fn main() void {
std.debug.print("Character {} - G:{} H:{} XP:{}\n",
.{num+1, c.gold, c.health, c.experience});
}
-
- std.debug.print("\n", .{});
}