aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/exercises/37_structs.zig
diff options
context:
space:
mode:
authorDave Gauer <ratfactor@gmail.com>2021-02-15 19:32:00 -0500
committerGitHub <noreply@github.com>2021-02-15 19:32:00 -0500
commita2b6b68a255c2d050e4f53a5082c38ec810c1b24 (patch)
tree45f2eba30d72f43df60cd9b053ebaea5dfe11f18 /exercises/37_structs.zig
parent882a6b6198148673ec97c6e38443f8e2a6a6b576 (diff)
parentbbe93b1f12ae60258a6322e8ec2212fd072b777a (diff)
Merge pull request #22 from quexxon/apply-zig-fmt
Apply `zig fmt` to exercises and generate remaining patch files
Diffstat (limited to 'exercises/37_structs.zig')
-rw-r--r--exercises/37_structs.zig10
1 files changed, 5 insertions, 5 deletions
diff --git a/exercises/37_structs.zig b/exercises/37_structs.zig
index dd4b633..37989c0 100644
--- a/exercises/37_structs.zig
+++ b/exercises/37_structs.zig
@@ -23,7 +23,7 @@
const std = @import("std");
// We'll use an enum to specify the character class.
-const Class = enum{
+const Class = enum {
wizard,
thief,
bard,
@@ -32,7 +32,7 @@ const Class = enum{
// Please add a new property to this struct called "health" and make
// it a u8 integer type.
-const Character = struct{
+const Character = struct {
class: Class,
gold: u32,
experience: u32,
@@ -41,8 +41,8 @@ const Character = struct{
pub fn main() void {
// Please initialize Glorp with 100 health.
var glorp_the_wise = Character{
- .class = Class.wizard,
- .gold = 20,
+ .class = Class.wizard,
+ .gold = 20,
.experience = 10,
};
@@ -54,6 +54,6 @@ pub fn main() void {
std.debug.print("Your wizard has {} health and {} gold.", .{
glorp_the_wise.health,
- glorp_the_wise.gold
+ glorp_the_wise.gold,
});
}