silt-lua 0.1.1

A pure rust Lua interpreter and virtual machine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14

function test1()
    print("test1")
end

function test2()
    print("test21")
    "a"
    print("test22")
end
"b"

test1()
test2()