diff --git a/NonStandardLuaLibs.md b/NonStandardLuaLibs.md index c3cc32f..7253f32 100644 --- a/NonStandardLuaLibs.md +++ b/NonStandardLuaLibs.md @@ -8,7 +8,7 @@ The [original functions](http://www.lua.org/manual/5.2/manual.html#6.1) from the - `collectgarbage` is *not* available. - `dofile` and `loadfile` have been reimplemented to load files from mounted file system components (they use [[the filesystem API|API/Filesystem]] / reimplemented `io` library). -- `load` can only be used to load text, no binary/compiled code. +- `load` can only be used to load text, no binary/compiled code by default. Note that bytecode loading can be enabled in the config, but is really not recommended, since it is a *major security risk*. - `print` has been reimplemented to use the reimplemented `io.stdout` which uses `term.write`. Coroutine Manipulation