About 50 results
Open links in new tab
  1. Compile your lua files - Stack Overflow

    May 6, 2014 · To package your Lua files into an executable on Windows you have several options. There is srlua, there is wxLuaFreeze from wxLua (available as a binary for Windows), and there are …

  2. How to open a lua file on text editor using windows 10

    May 11, 2020 · I want to open a .Lua file on a text editor, I have tried most of the text editors but its still didn't let me. is there any process that i need to do to open the file like we usually doing to open...

  3. How to read data from a file in Lua - Stack Overflow

    How to read data from a file in Lua Asked 13 years, 6 months ago Modified 1 year, 4 months ago Viewed 210k times

  4. How do I run a .lua file? - Stack Overflow

    May 1, 2014 · I need to run a .lua file with another .lua file. Here is my code: Program = io.read () dofile (program) I type the name of the file that I want to run correctly, but for some reason my compiler say...

  5. windows - How do I run a Lua script? - Stack Overflow

    Mar 6, 2016 · I built lua, added it to my environment variables PATH but I cant figure out how to successfully run it. I tried dragging a .lua file onto lua.exe but that just causes my explorer window to …

  6. Create a new file in Lua/LuaFileSystem - Stack Overflow

    Jan 20, 2017 · I've looked over the Lua & LuaFileSystem Docs and have yet to find a way to create a new file, I also scouted around on here but to the same end. As a note, the solution I'm looking for …

  7. exe - How to make a lua file? - Stack Overflow

    Oct 11, 2021 · I wanna try to make a ".exe" file using lua code. I've tried lua.org but i don't understand anything about it. i've followed tutorials but they all don't help. It would help me alot if there was a …

  8. installation - How to install Lua on windows - Stack Overflow

    Lua does not have a certified IDE or compiler to come with it. You usually run lua code from a lua command line / lua file which will handle the tasks you are attempting to create.

  9. "main" function in Lua? - Stack Overflow

    Lua calls a script from the interpreter with the arg table, with arg[0] being the name of the script. The debug.getinfo function returns a table of information describing the function at the level of the stack …

  10. windows - Creating standalone Lua executables - Stack Overflow

    Oct 11, 2008 · Is there an easy way to create standalone .exe files from Lua scripts? Basically this would involve linking the Lua interpreter and the scripts. I believe it is possible (PLT Scheme allows the cre...