my ziglings
0

Configure Feed

Select the types of activity you want to include in your feed.

fix: oops

Robert Fry (Mar 9, 2026, 11:24 PM UTC) 0385f5d0 de3c99dd

+1 -1
+1 -1
exercises/050_no_value.zig
··· 15 15 // "undefined" should not be thought of as a value, but as a way 16 16 // of telling the compiler that you are not assigning a value 17 17 // _yet_. Any variable may be set to undefined, but attempting to 18 - // read its value before assigning one _always_ a mistake. 18 + // read its value before assigning one is _always_ a mistake. 19 19 // 20 20 // * null 21 21 //