2021-02-06 15:54:56 -05:00
|
|
|
//
|
|
|
|
// Being able to group values together lets us turn this:
|
|
|
|
//
|
|
|
|
// point1_x = 3;
|
|
|
|
// point1_y = 16;
|
|
|
|
// point1_z = 27;
|
|
|
|
// point2_x = 7;
|
|
|
|
// point2_y = 13;
|
|
|
|
// point2_z = 34;
|
|
|
|
//
|
|
|
|
// into this:
|
|
|
|
//
|
2021-02-26 00:18:49 -05:00
|
|
|
// point1 = Point{ .x=3, .y=16, .z=27 };
|
|
|
|
// point2 = Point{ .x=7, .y=13, .z=34 };
|
2021-02-06 15:54:56 -05:00
|
|
|
//
|
|
|
|
// The Point above is an example of a "struct" (short for "structure").
|
2021-08-29 08:37:56 -04:00
|
|
|
// Here's how that struct type could have been defined:
|
2021-02-06 15:54:56 -05:00
|
|
|
//
|
|
|
|
// const Point = struct{ x: u32, y: u32, z: u32 };
|
|
|
|
//
|
|
|
|
// Let's store something fun with a struct: a roleplaying character!
|
|
|
|
//
|
|
|
|
const std = @import("std");
|
|
|
|
|
2023-08-02 17:29:02 -04:00
|
|
|
// We'll use an enum to specify the character role.
|
|
|
|
const Role = enum {
|
2021-02-06 15:54:56 -05:00
|
|
|
wizard,
|
|
|
|
thief,
|
|
|
|
bard,
|
|
|
|
warrior,
|
|
|
|
};
|
|
|
|
|
|
|
|
// Please add a new property to this struct called "health" and make
|
|
|
|
// it a u8 integer type.
|
2021-02-15 16:55:44 -05:00
|
|
|
const Character = struct {
|
2023-08-02 17:29:02 -04:00
|
|
|
role: Role,
|
2021-02-06 15:54:56 -05:00
|
|
|
gold: u32,
|
|
|
|
experience: u32,
|
2024-01-13 01:19:56 -05:00
|
|
|
health: u8,
|
2021-02-06 15:54:56 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
pub fn main() void {
|
|
|
|
// Please initialize Glorp with 100 health.
|
|
|
|
var glorp_the_wise = Character{
|
2023-08-02 17:29:02 -04:00
|
|
|
.role = Role.wizard,
|
2021-02-15 16:55:44 -05:00
|
|
|
.gold = 20,
|
2021-02-06 15:54:56 -05:00
|
|
|
.experience = 10,
|
2024-01-13 01:19:56 -05:00
|
|
|
.health = 100,
|
2021-02-06 15:54:56 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
// Glorp gains some gold.
|
|
|
|
glorp_the_wise.gold += 5;
|
|
|
|
|
|
|
|
// Ouch! Glorp takes a punch!
|
|
|
|
glorp_the_wise.health -= 10;
|
|
|
|
|
2021-04-04 16:23:27 -04:00
|
|
|
std.debug.print("Your wizard has {} health and {} gold.\n", .{
|
2021-02-06 15:54:56 -05:00
|
|
|
glorp_the_wise.health,
|
2021-02-15 16:55:44 -05:00
|
|
|
glorp_the_wise.gold,
|
2021-02-06 15:54:56 -05:00
|
|
|
});
|
|
|
|
}
|