| ... | ... | @@ -392,7 +392,7 @@ pub fn main() !void { |
| 392 | 392 | The code sample begins by adding the {#link|Zig Standard Library#} to the build using the {#link|@import#} builtin function. |
| 393 | 393 | The {#syntax#}@import("std"){#endsyntax#} function call creates a structure that represents the Zig Standard Library. |
| 394 | 394 | The code then {#link|declares|Container Level Variables#} a |
| 395 | | {#link|constant identifier|Assignment#}, named {#syntax#}std{#endsyntax#}, that gives access the features of the Zig Standard Library. |
| 395 | {#link|constant identifier|Assignment#}, named {#syntax#}std{#endsyntax#}, that gives access to the features of the Zig Standard Library. |
| 396 | 396 | </p> |
| 397 | 397 | <p> |
| 398 | 398 | Next, a {#link|public function|Functions#}, {#syntax#}pub fn{#endsyntax#}, named {#syntax#}main{#endsyntax#} |