Files
bun.sh/src/CLAUDE.md
2025-10-24 23:42:20 -07:00

436 B

Zig

Syntax reminders:

  • Private fields are fully supported in Zig with the # prefix. struct { #foo: u32 }; makes a struct with a private field named #foo.
  • Decl literals in Zig are recommended. const decl: Decl = .{ .binding = 0, .value = 0 };

Conventions:

  • Prefer @import at the bottom of the file, but the auto formatter will move them so you don't need to worry about it.
  • You must be patient with the build.