AluminumLua
AluminumLua copied to clipboard
NOTE: THIS WAS A TOY PROJECT AND IS NOT MAINTAINED
``` if false then if false then print("two falses are true") else print("one false is true") end else print("at least one false is false") end ``` Expected output: at least...
It's a quick fix for the bug ``` lua local aaa = 1 aaa = 5 print(aaa) ``` causing unexpected 'a' there is probably a better way to do it...
I set a = 20 and excute the following script: value=27006.63+(value_1.25-27006.63)_0.991440392.An error occurred because of ParseNumberLiteral doesn't work correctly.
Hi, I hope you can help me with that because AluminiumLua seems a great project ... I try this : -- Fibonacci series function Fibonacci(n) if (n == 0) then...
Hi. I've noticed an issue with variable contexts in "else" statements. The following code: bar = 0 function foo() print "bar is " .. bar if bar > 0 then...
Hi. Thanks for the work so far on AluminumLua. It's a project with great promise! I'm noticing a significant scoping issue with "if" statements within function calls. The first is:...
I started to port the thing but came to that ILGenerator in ExpressionCompiler. I never used Reflection that much so I'm not familiar with how that works. Is there a...
Or am I just stupid? My lua code: ``` for i=1,10 do print(i) end return 'I\'m done!' ``` My C# code (worked perfectly for other Lua scripts, e.g. the helloworld...
I've noticed, that in your lib there is a bug/error. When I paste such code: //--- local aaa = 1 aaa = aaa + 1 print(aaa) //--- or other variable...
Hello, so first thank you you're awesome :-) Next This scripting language is the only one that I manage to make work on WP8 platform (ironpython : do not support,...