infinite for loop lua code example
Example 1: lua infinite
for i=0, math.huge do
end
Example 2: forever loop in lua
while( true )
do
print("This loop will run forever.")
end
for i=0, math.huge do
end
while( true )
do
print("This loop will run forever.")
end