EDIT:
i fail
change lua.c line 370
s.argc = argc_alt to s.argc = argc
change lua.c line 370
s.argv = argv_alt to s.argv = argv
------
so lua sucks and im trying to make nonfail syntax
http://www.darkstars.co.uk/downloads/vi ... ly_v02.zip
1need bet----~^////alpha testers
2totally not virus
3uploaded to AFs failsite so link probably dead
4.exe's are in the file in src/ dir but unless you want to create
a file named C:\Bfolder\lollua\lua51curly\src\test.lua you will want to recompile
( read = hardcoded because i dont know how to pass arguments to the debugger in Eclipse ) ( preferably use: make posix )
5example syntax:
------
Code: Select all
a = {[1]="wwww"}
print(a[1])
if (true)
{
print("HI")
}
while (x1==nil)
{
print("WHILE")
x1=false
}
do
{
print("DO")
}
x2=1
repeat
{
print("REPEAT")
x2 = x2 + 1
}
until
{
x2 == 3
}
x3 = function(x)
{
print(x)
}
x3("FUNCTION")
for x=1,2,1
{
print("FOR1")
}
x4 = {1,2,3}
for k,v in pairs(x4)
{
print("FOR2" .. "|" .. v)
}
6not backwards compatible ( yet )
so if (xxx) then www end fails
if (xxx) { www } only
final destination