Fandom Developers Wiki
Advertisement

This module was made as a sandbox for the user The JoTS. This documentation is kept to prevent redlinks.


return {
    
    [''] = function() return "Empty string function" end,
    main = function() return "Nothing to see here" end,
    
    echo = function(frame)
        return frame.args[1]
    end,
    
    echo_process = function(frame)
        return frame:preprocess( frame.args[1] )
    end
    
}
Advertisement