ClosedBit error docs

CB_ERR_SYNTAX

Syntax shape error. The compiler could not parse the current line or block shape.

Why it happens

The compiler could not parse the current line or block shape.

How to fix it

Check braces, parentheses, commas, operators, and line breaks around the reported line.

Copy-paste fix pattern
fn main() {
    println("ClosedBit ready")
}
If the IDE reports a line number, fix that line first, then scan the previous line for an unclosed string, bracket, or block.