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