Post 9gOSEA5Za8FPpbQ4Gm by jackolas@sunbeam.city
 (DIR) More posts by jackolas@sunbeam.city
 (DIR) Post #9gORyStts9lrXdTVUO by grainloom@cybre.space
       2019-03-03T12:07:15Z
       
       1 likes, 0 repeats
       
       grah, Python is so needlessly large, I wanna use Lua
       
 (DIR) Post #9gORznOv8dJ7PacRE0 by grainloom@cybre.space
       2019-03-03T12:07:29Z
       
       0 likes, 0 repeats
       
       or rc
       
 (DIR) Post #9gOSEA5Za8FPpbQ4Gm by jackolas@sunbeam.city
       2019-03-03T12:10:05Z
       
       0 likes, 0 repeats
       
       @grainloom what do you mean by this? V curious.
       
 (DIR) Post #9gOT8zj4mc9SCJzrSS by grainloom@cybre.space
       2019-03-03T12:20:21Z
       
       0 likes, 0 repeats
       
       @jackolas don't really have time to explain this right nowin short: Lua is better because it doesn't have so many moving partseg. Lua's module system is much simpler and more flexible, a file is just a function and it has a return value like all functions, so you just return a table from itcompare this to Python which has special syntax for modules
       
 (DIR) Post #9gOTDT4bc2xgNJCSyO by grainloom@cybre.space
       2019-03-03T12:21:10Z
       
       0 likes, 0 repeats
       
       @jackolas which is super annoying because it makes every top-level definition publicin Lua, I could easily use local definitions as private upvalues of a function exported by a module
       
 (DIR) Post #9gOTF7jvtucsn1JuYC by grainloom@cybre.space
       2019-03-03T12:21:28Z
       
       1 likes, 0 repeats
       
       @jackolas it's also faster btw, especially LuaJiT
       
 (DIR) Post #9gOTWG721c7ngCILzs by jackolas@sunbeam.city
       2019-03-03T12:24:34Z
       
       0 likes, 0 repeats
       
       @grainloom I follow if you gotta go don't worry about it; what scale of thing are you writing that this is a benefit to you? Thanks for the different perspective.
       
 (DIR) Post #9gOU0b1OqkHFDR7uro by grainloom@cybre.space
       2019-03-03T12:30:02Z
       
       0 likes, 0 repeats
       
       @jackolas it varies, but the scale doesn't matter, if your language is too big to keep all of it in mind at the same time, it's too bigLua I've pretty much learned inside outPython, hecc, I always find new stuff about it and that's a bad thing for me. I don't want weird parts of the stdlib or the language affecting my code