Just wondering if the PSP Lua Player supports compiled lua scripts. I like compiled scripts because I think they don't have syntax errors (if they compiled right) and because there is no need to parsing at runtime of the code.
If the player supports compiled scripts which should be the name of the initial script file? index.luac ?
Lua (the library, not luaplayer) looks at the code it is asked to load: if it's compiled, it runs it; if it's not, it compiles and runs it. My point being that yes, it works (in theory; I've never tried it). The index file is always called 'index.lua'.