diff options
author | Dave Gauer <dave@ratfactor.com> | 2021-04-14 11:00:25 -0400 |
---|---|---|
committer | Dave Gauer <dave@ratfactor.com> | 2021-04-14 11:00:25 -0400 |
commit | 6f3ab8b0251fb07d8665ca98dca6510298c76bd2 (patch) | |
tree | 8e7de610941da50b20433b356ff242008516a536 /build.zig | |
parent | e780328b253dfd948ca84535767c98dd2adf383e (diff) | |
download | ziglings-6f3ab8b0251fb07d8665ca98dca6510298c76bd2.tar.gz ziglings-6f3ab8b0251fb07d8665ca98dca6510298c76bd2.tar.bz2 ziglings-6f3ab8b0251fb07d8665ca98dca6510298c76bd2.tar.xz ziglings-6f3ab8b0251fb07d8665ca98dca6510298c76bd2.zip |
Added type reflection to 066
Diffstat (limited to 'build.zig')
-rw-r--r-- | build.zig | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -333,7 +333,7 @@ const exercises = [_]Exercise{ }, .{ .main_file = "066_comptime.zig", - .output = "const_int=12345, const_float=987.654, var_int=54321, var_float=456.789", + .output = "Immutable: 12345, 987.654; Mutable: 54321, 456.789; Types: comptime_int, comptime_float, u32, f32", .hint = "It may help to read this one out loud to your favorite stuffed animal until it sinks in completely." }, }; |