1
0
Fork 0
mirror of https://codeberg.org/ziglings/exercises.git synced 2025-06-08 01:57:02 +09:00

066: 'just' -> 'must'

This commit is contained in:
felixrabe 2025-05-30 14:55:20 +02:00
parent fd764e90ab
commit 1d4d5a4436

View file

@ -58,7 +58,7 @@ pub fn main() void {
// To be mutable at runtime, these identifiers must refer to
// areas of memory. In order to refer to areas of memory, Zig
// must know exactly how much memory to reserve for these
// values. Therefore, it follows that we just specify numeric
// values. Therefore, it follows that we must 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.