Skip to content

Latest commit

 

History

History
25 lines (23 loc) · 352 Bytes

File metadata and controls

25 lines (23 loc) · 352 Bytes

Everything from Zig's default formatting except that all else if and else statements need to be on their own line.

For example, this is allowed ✅:

if (one) {
    // one
}
else if (two) {
    // two
}
else {
    // three
}

This is not allowed ❌:

if (one) {
    // one
} else if (two) {
    // two
} else {
    // three
}