# Unsorted These are functions that aren't in any specific table. --- #### `Maybe, Maybe` loadstring(`String` source, [`String` name, [`LuaValue` env]]) Compiles the provided **source** and returns it as a callable function. If there are any syntax errors, returns `nil` and the error as a string instead. - **name** is used for error messages, the default is the name of the script that called `loadstring`. - **env** is used as the environment of the returned function, the default is `_ENV`. ---