Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

Best way to learn about LUA coding? [closed]

Asked by
exbenn 10
8 years ago

I really want to start a new dream, become a professional programmer. But I don't know where to start! If someone can give me like a wesbite or like a tip, I would really appreciate it.

Thanks!

2
The entire roblox wiki, YouTube, scriptinghelpers.org. Also, It's "Lua" not "LUA" -- It isn't an acronym. Pyrondon 2089 — 8y
0
Thanks all of you for your comments, I will take all of them In mind. :) exbenn 10 — 8y

Locked by WideSteal321, ihatecars100, and User#5423

This question has been locked to preserve its current state and prevent spam and unwanted comments and answers.

Why was this question closed?

2 answers

Log in to vote
4
Answered by
Link150 1355 Badge of Merit Moderation Voter
8 years ago
Edited 7 years ago

About Lua

To learn Lua, the best place would be the official Lua Documentation website:

http://www.lua.org/manual/5.1/#index

It should always be your first destination when looking for information about a standard Lua function.

About programming in general

If you wish to become a professional programmer, you should probably look into various college formations first. It would also be a good idea to look into programming languages rather than scripting languages, like Lua, and to learn the inner workings of a computer.

A good programming language to learn first would be C. C is a very powerful language that was first written by two gentlemen named Dennis Ritchie and Brian Kernighan back in 1989. It is still one of the most used programming languages today. Back in its day, it was considered a high-level language, but today I think it could be considered a low-level language.

Low-level languages tend to be harder to learn but much more powerful as they get closer and closer to the machine itself. High-level languages, in contrast, are easy to learn and use but tend to be less efficient and don't allow to do as much as a low-level language. The lowest level language there is would be pure binary, which, lets face it, would be impossible for any sane person to directly write a program in. Just above it are what we call assembly languages. Scripting languages are generally high-level.

Being a relatively low-level language, learning C should at the same time encourage you to learn a bit about computers themselves.

You might also have heard of C++, which is sort of an extension of C, although I would advise against learning it as your first language. Another good option would be Java, which is kind of similar to C++, but much more user-friendly in my opinion, since it is a high-level language.

Hope that helped. :)

0
Thanks a lot, you really helped me this time; I wish you the best of the lucks. exbenn 10 — 8y
0
If it helped, please mark my answer as accepted. It will give us both reputation points. :) Link150 1355 — 8y
Ad
Log in to vote
-1
Answered by 8 years ago
Edited 8 years ago