rslua 0.3.0

Yet another Lua lexer and Lua parser for Lua 5.3
Documentation
local function test(file)
    print("begin test => " .. file)
    require(file)
    print("end test <= " .. file)
end

test 'json_test'
test 'msgpack_test'

-- tests from lua.js
test 'bisect'
test 'cf'
test 'factorial'
test 'fib'
test 'hello'
test 'life'
test 'optest'
test 'select'
test 'sort'
test 'table'
test 'test_math'