my ziglings
0

Configure Feed

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

add commas

Paul Ebose (Feb 27, 2026, 3:38 AM +0100) 4aeb7b83 3ecaa342

+2 -2
+1 -1
exercises/039_pointers.zig
··· 4 4 // var foo: u8 = 5; // foo is 5 5 5 // var bar: *u8 = &foo; // bar is a pointer 6 6 // 7 - // What is a pointer? It's a reference to a value. In this example 7 + // What is a pointer? It's a reference to a value. In this example, 8 8 // bar is a reference to the memory space that currently contains the 9 9 // value 5. 10 10 //
+1 -1
exercises/103_tokenization.zig
··· 2 2 // The functionality of the standard library is becoming increasingly 3 3 // important in Zig. First of all, it is helpful to take a look at how 4 4 // the individual functions are implemented. Because this is wonderfully 5 - // suitable as a template for your own functions. In addition these 5 + // suitable as a template for your own functions. In addition, these 6 6 // standard functions are part of the basic configuration of Zig. 7 7 // 8 8 // This means that they are always available on every system.