Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Statements

Syntax
StmtItem
      IfStmt
    | WhileStmt
    | BlockStmt
    | Expr ;
    | break
    | continue
    | return

WhileStmtwhile ( Expr ) Stmt

IfStmtif Expr BlockStmt ( else BlockStmt )?

BlockStmt{ Stmt* }