| ... | ... | @@ -263,7 +263,7 @@ pub fn main() !void { |
| 263 | 263 | Next, a {#link|public function|Functions#}, {#syntax#}pub fn{#endsyntax#}, named <code>main</code> |
| 264 | 264 | is declared. The <code>main</code> function is necessary because it tells the Zig compiler where the start of |
| 265 | 265 | the program exists. Programs designed to be executed will need a {#syntax#}pub fn main{#endsyntax#} function. |
| 266 | | For more advanced Zig use cases, Zig offers other features to inform the compiler where the start of |
| 266 | For more advanced use cases, Zig offers other features to inform the compiler where the start of |
| 267 | 267 | the program exists. Libraries, on the other hand, do not need a <code>main</code> function because |
| 268 | 268 | library code is usually called by other programs. |
| 269 | 269 | </p> |