You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using the console output setting (lua.debug.settings.console) as internalConsole will only reliably work in Lua Debug v2.0.5.
While using "Run File", there are a couple issues that can occur:
The console will only output the program once after a handful of tries.
Attempting to run the file again will briefly open and close a console window, but no output will be displayed.
If you're lucky, there will be an output displayed, roughly every 1/10 tries, but often less than this.
The output is often incomplete.
- Trying running this code: for i = 1, 10 do print(i) end
- This should print a list of numbers from 1-10, however, when/if the output is displayed, only 1 is printed.
The text was updated successfully, but these errors were encountered:
Using the console output setting (lua.debug.settings.console) as
internalConsole
will only reliably work in Lua Debug v2.0.5.While using "Run File", there are a couple issues that can occur:
- Trying running this code:
for i = 1, 10 do print(i) end
- This should print a list of numbers from 1-10, however, when/if the output is displayed, only
1
is printed.The text was updated successfully, but these errors were encountered: