From 00c749f9815125b4d27ca1ada01c8d0e78bec32c Mon Sep 17 00:00:00 2001 From: Chris Boesch <48591413+chrboesch@users.noreply.github.com> Date: Sun, 29 Jan 2023 17:52:11 +0100 Subject: [PATCH] description specified --- exercises/066_comptime.zig | 1 + 1 file changed, 1 insertion(+) diff --git a/exercises/066_comptime.zig b/exercises/066_comptime.zig index bcd0bc5..9b07a2d 100644 --- a/exercises/066_comptime.zig +++ b/exercises/066_comptime.zig @@ -61,6 +61,7 @@ pub fn main() void { // values. Therefore, it follows that we just specify numeric // types with specific sizes. The comptime numbers will be // coerced (if they'll fit!) into your chosen runtime types. + // For this it is necessary to specify a size, e.g. 32 bit. var var_int = 12345; var var_float = 987.654;