1.3.0
Added
- Adds the
loadstring
function. It compiles a string into lua code - if the code compiles,loadstring
will return a function that runs that code; otherwise, it returnsnil
and the error that prevented the code from compiling.
loadstring
function. It compiles a string into lua code - if the code compiles, loadstring
will return a function that runs that code; otherwise, it returns nil
and the error that prevented the code from compiling.