-- v2.10 CORPUS: load + compile.
localf,err=load("return 40 + 2")print(err,f())localg=load("return function(x) return x * 3 end")print(g()(4))-- 12
-- load with parse error
localbad=load("this is not lua")print(bad~=nil)-- may be nil OR function-that-errors