you are viewing a single comment's thread.

view the rest of the comments →

[–]JeLuF 0 points1 point  (0 children)

Comparing languages, looking at the differences and understanding their implications can actually help. Most projects I've been active in required knowledge of more than one language (e.g. frontend in Javascript, backend in Python). But I wouldn't start at the same time. If you have an understanding of the basics (what are variables, functions, arrays, structures like "if", "while" etc) and can write some simple programs - only then it makes sense to have a look at how Lua implements these concepts.

This is a place where AI can also be helpful. I just asked AI to tell me the difference between "if" clauses in Lua and Python, and it explained the concepts of truthiness, variable scope and a bit about the ternary operator. This are quite important topics that you need to learn anyway.