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
15
do
  function fib(n)
    if n <= 1 then
      return n
    else
      return fib(n - 1) + fib(n - 2)
    end
  end

  local i = 1
  while i < 100 do
    print(i .. ":" .. fib(i))
    i = i + 1
  end
end