Skip to content

Code Style

ZViz code conventions.

Formatting

zig fmt src/

Naming

  • Functions: camelCase
  • Types: PascalCase
  • Constants: SCREAMING_SNAKE_CASE

Documentation

Use doc comments:

/// Brief description.
///
/// Detailed description.
pub fn example() void {}