compiler.block


compiler.block(exprs)
      

Return the intermediate language code required for evaluating the list of expressions exprs sequentially as a single block of code.

Examples:


// { showln(123); showln(456) }
eval(compiler.block([compiler.call('showln, [123]),
                     compiler.call('showln, [456])]))
//> 123
    456
      

Also see:

compiler


Core Module Index | Contents