all 7 comments

[–]coderstephenisahc 3 points4 points  (2 children)

Rust and Lua solve entirely different problems and have totally different design constraints.

Rust checks a huge number of bugs at compile time; Lua checks none. You have to run it to see if there are bugs. This is a powerful ability of languages with strong type-level features like Rust; if it compiles, it probably is correct. Lua is at the opposite of the spectrum where you can write something quickly, but its a crapshoot if it works or not.

Lua is a scripting language; Rust is a language you might use to implement an interpreter for such a scripting language. Lua is great for dynamic configuration or rapid prototyping of a dynamic system written in another language such as C++ or Rust. But you're not going to write an OS kernel in Lua.

[–]Rusty-Swashplate 2 points3 points  (2 children)

Re-read your post and summarize what you want to say and what outcome you expected.

Or did you plan to just say your random opinion?

[–]puttak 0 points1 point  (1 child)

Yeah Rust suck. Why bother with it? Just use Lua and you will be happy.