From e5dc5a6eb5608c100e78d6116942a4cd17f56d00 Mon Sep 17 00:00:00 2001
From: Andrew Kelley
In some programming languages, it is common to prefix identifiers with underscores + {#syntax#}__like_this{#endsyntax#} to indicate some vague notion of privacy or danger + associated with usage of the identifier.
+In Zig, there are no private fields, and it is better not to pretend + otherwise. Fields should be named carefully to communicate their + semantics and documentation should indicate how to use fields without + violating data invariants. Underscore prefixes serve only to make code + authors feel better about writing clumsy, overly prescriptive, poorly + documented code.
+ {#header_close#} + {#header_open|Whitespace#}