fun blockDecl(block: CodeFunc): Unit
Render an anonymous block.
Example: blockDecl { s("int v = 7") }
// -- Result -- // { // int v = 7; // }