mirror of
https://codeberg.org/ziglings/exercises.git
synced 2026-03-28 21:34:52 +00:00
Merge pull request 'add commas' (#364) from pebose/exercises:add-punctuations into main
Reviewed-on: https://codeberg.org/ziglings/exercises/pulls/364
This commit is contained in:
commit
07031c5daa
|
|
@ -4,7 +4,7 @@
|
||||||
// var foo: u8 = 5; // foo is 5
|
// var foo: u8 = 5; // foo is 5
|
||||||
// var bar: *u8 = &foo; // bar is a pointer
|
// var bar: *u8 = &foo; // bar is a pointer
|
||||||
//
|
//
|
||||||
// What is a pointer? It's a reference to a value. In this example
|
// What is a pointer? It's a reference to a value. In this example,
|
||||||
// bar is a reference to the memory space that currently contains the
|
// bar is a reference to the memory space that currently contains the
|
||||||
// value 5.
|
// value 5.
|
||||||
//
|
//
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
// The functionality of the standard library is becoming increasingly
|
// The functionality of the standard library is becoming increasingly
|
||||||
// important in Zig. First of all, it is helpful to take a look at how
|
// important in Zig. First of all, it is helpful to take a look at how
|
||||||
// the individual functions are implemented. Because this is wonderfully
|
// the individual functions are implemented. Because this is wonderfully
|
||||||
// suitable as a template for your own functions. In addition these
|
// suitable as a template for your own functions. In addition, these
|
||||||
// standard functions are part of the basic configuration of Zig.
|
// standard functions are part of the basic configuration of Zig.
|
||||||
//
|
//
|
||||||
// This means that they are always available on every system.
|
// This means that they are always available on every system.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user