diff options
| author | Will Clardy <[email protected]> | 2021-02-15 16:55:44 -0500 |
|---|---|---|
| committer | Will Clardy <[email protected]> | 2021-02-15 16:55:44 -0500 |
| commit | 238beb4a2d3c2eacbb21bba03dcfcf1db3ec3dcb (patch) | |
| tree | 4f88d7f715dcd0bc98d20f3b7f70d49f2bdcb408 /exercises/37_structs.zig | |
| parent | 97ae27435b3782ddbde69fccc5f40caee5dda2cd (diff) | |
| download | ziglings-238beb4a2d3c2eacbb21bba03dcfcf1db3ec3dcb.tar.xz ziglings-238beb4a2d3c2eacbb21bba03dcfcf1db3ec3dcb.zip | |
Apply `zig fmt` to exercises
Diffstat (limited to 'exercises/37_structs.zig')
| -rw-r--r-- | exercises/37_structs.zig | 10 |
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, }); } |
