Earlier quoted context omitted.
> Storing Mongolian is not a big deal. ... > You'll need a lib to e.g. calculate UTF-8 lengths, ... > There are no technical limitations there. You cannot be seriously making this argument. Why not just code everything in assembly?
I understand it's annoying that Lua doesn't have a a single, officially recommended Unicode library* (in the core distribution or otherwise), but as problems go, it's easily solved by loading an existing, freely available library and getting on with life. It's much less trouble than (say) removing the GIL from Python or retroactively fixing weird operator precendence in C. * Though there are recommendations at http:/…
Agreed; only, the fact that no one has done it conclusively so far says to me that the Lua community isn't/hasn't been thinking about these sorts of things, and makes me worry about the other holes I will encounter if I do delve into the language. I'd rather invest my time and energy into learning how to use Cython to speed up Python, or Clojure to make Java more fun.