#Does anyone have any pointers or directions to go to for learning lua?
1 messages · Page 1 of 1 (latest)
not sure if its against the rules to post this since i asked for pointers but i didnt ask for someone to make a game i might be good
don't think of it like learning a language, think of it like learning how to program
and don't focus on trying to make a game. Focus on expanding your skills.
Where would i start tho?
Like is their anything i should watch, websites to visit
Just to help me get started on the overall learning aspect
don't just consume, actually try to understand what's happening, what the syntax is doing
really there's easy "how to learn" route, everyone's different
how i learned to program was completely different from how the people I was trying to learn from said was how they learned
ohh
** You are now Level 1! **
I've tried to learn it before but when i tried i was just watching videos and never was really able to understand the basic stuff
yeah, that's the trap a lot of people get stuck in
i couldnt even tell you how to make a gui
understanding what 3 simple lines are doing is infinitely better than memorizing what 20 lines are doing, start there
i'll try to get you started
what do you think this does?
local x = 10
i think thats one of the size thingys
its been AWHILE since i tried to learn so im basically starting from scratch all over again
alright
what it really does is it creates a variable (pretty much the same thing as variables in math) and sets its value to 10
so it's variable declaration
which is a standard feature across literally every single popular programming language
so you're not really just learning lua when learning programming
oh your learning
multiple
because i know theirs variables, conditions, loops, functions
but thats about
it really
i couldnt tell you what they look like but im aware a lot of things require it
The best way of learning is doing.