Skip to content
Michael Dusan edited this page Jul 4, 2019 · 57 revisions

Where is the documentation for the Zig standard library?

There is no stdlib documentation yet, but it is planned for the next release. For now, the best ways to learn about the standard library are:

  • Browse the stdlib code to see what public functions and types are available.
  • Check out the community and ask questions if you need help. Newcomers are always welcome!

Why does Zig force me to use spaces instead of tabs?

After a very lengthy discussion about tabs and spaces, it was decided that only spaces would be allowed.

The biggest reason to enforce an indentation and line endings is that it eliminates energy spent on debating what the standard should be, since the standard is enforced by the compiler.

The issue of other whitespace characters has been discussed too, and similar decisions were made. Zig aims to offer only one way to do things whenever possible. This makes the cognitive load lower for programmers and keeps the compiler code base simpler and easier to understand.

Note that it is planned to have zig fmt allow for tabs (as well as a few other illegal, but unambiguous, whitespace characters) and automatically convert them.

How do I make zig fmt skip a range of source lines?

zig fmt will parse comments for special directives.

In this example all code between // zig fmt: off and // zig fmt: on will be excluded from formatting:

// zig fmt: off
const matrix = Matrix{1.0, 0.0, 0.0, 0.0,
                      0.0, 1.0, 0.0, 0.0,
                      0.0, 0.0, 1.0, 0.0,
                      0.0, 0.0, 0.0, 1.0};
// zig fmt: on
Clone this wiki locally