compiler.block(exprs)
Return the intermediate language code required for evaluating the list of expressions exprs
sequentially as a single block of
code.
// { showln(123); showln(456) }
eval(compiler.block([compiler.call('showln, [123]),
compiler.call('showln, [456])]))
//> 123
456