You’ve just stumbled upon the most complete, in-depth Lua programming course online.
Whether you want to:
- build the skills you need to get your first Lua programming job
- move to a more senior software developer position
- become a computer scientist mastering in computation
- or just learn Lua to be able to create your own Lua apps quickly
This complete Lua Masterclass is the course you need to do all of this, and more.
You’ve just stumbled upon the most complete, in-depth Lua programming course online.
Whether you want to:
- build the skills you need to get your first Lua programming job
- move to a more senior software developer position
- become a computer scientist mastering in computation
- or just learn Lua to be able to create your own Lua apps quickly
This complete Lua Masterclass is the course you need to do all of this, and more.
This course is designed to give you the Lua skills you need to become a Lua developer. By the end of the course, you will understand Lua extremely well and be able to build your own Lua apps and be productive as a computer scientist and software developer.
What makes this course a bestseller?
Like you, thousands of others were frustrated and fed up with fragmented Youtube tutorials or incomplete or outdated courses which assume you already know a bunch of stuff, as well as thick, college-like textbooks able to send even the most caffeine-fuelled coder to sleep.
Like you, they were tired of low-quality lessons, poorly explained topics, and confusing info presented in the wrong way. That’s why so many find success in this complete Lua developer course. It’s designed with simplicity and seamless progression in mind through its content.This course assumes no previous coding experience and takes you from absolute beginner core concepts. You will learn the core Lua skills and master functional programming. It's a one-stop shop to learn Lua. If you want to go beyond the core content you can do so at any time.
Here’s just some of what you’ll learn
(It’s okay if you don’t understand all this yet, you will in the course)
All the essential Lua keywords, facts, relations, arguments and expressions needed to fully understand exactlywhat you’re coding and why - making programming easy to grasp and less frustrating.
You will learn the answers to questions like What is a Lua database, What are rules and models and to apply them to your Lua apps.
Functions and Main Structure of Pattern Matching Systems along with dealing with uncertainty and knowledge representation.
Complete chapters on Functional programming and many aspects of the Lua Recursive mechanism (the protocols and tools for building applications) so you can code for all platforms and derestrict your program’s user base.
How to develop powerful Lua applications using Advanced Tree Representations and Module-Directed Programming.
What if I have questions?
As if this course wasn’t complete enough, I offer full support, answering any questions you have each day of the week.
This means you’ll never find yourself stuck on one lesson for days on end. With my hand-holding guidance, you’ll progress smoothly through this course without any major roadblocks.
There’s no risk either.
This course comes with a full guarantee. Meaning if you are not completely satisfied with the course or your progress, simply let me know and I’ll refund you 100%, every last penny no questions asked.
You either end up with Lua skills, go on to develop great programs and potentially make an awesome career for yourself, or you try the course and simply get all your money back if you don’t like it…
You literally can’t lose.
Ready to get started, developer?
Enroll now using the “Add to Cart” button on the right, and get started on your way to creative, advanced Lua brilliance. Or, take this course for a free spin using the preview feature, so you know you’re 100% certain this course is for you.
See you on the inside (hurry, Lua is waiting. )
In this lecture we make a brief introduction to Lua programming language.
In this lecture we learn how to install Lua on Windows.
In this lecture we learn how to install Lua on Linux.
In this lecture we learn how to install Lua on MacOS.
In this interlude we implement a function to compute the factorial of a number.
In this lecture we study the Lexical Conventions in Lua.
In this lecture we introduce the types in Lua.
In this lecture we study booleans and logical operators in Lua.
In this lecture we see the input and output system in Lua.
In this lecture we introduce tables in Lua.
In this lecture we study the table indices.
In this lecture we study table constructors in Lua.
In this lecture we study sequences in Lua.
In this lecture we make a brief introduction to Functions.
In this lecture we study functions with multiple results in Lua.
In this lecture we study variadic functions in Lua.
In this lesson we solve the problem 1 of the problems section on Functions.
In this lesson we solve the problem 2 of the problems section on Functions.
In this lesson we solve the problem 3 of the problems section on Functions.
In this lesson we solve the problem 4 of the problems section on Functions.
In this lesson we solve the problem 5 of the problems section on Functions.
On this lecture we formalize the syntax of conditionals in Lua.
On this lecture we study nested conditionals and the elseif keyword in Lua.
On this lecture we study the numerical for loop in Lua.
We explain the fundamentals of this control structure and practise with some examples.
On this lecture we study the generic for loop and learn to define iterator functions.
On this lecture we introduce the while loop in Lua.
On this lecture we study the repeat statement in Lua and practise with some examples.
In this lesson we solve the problem 1 of the problems section on Loops.
In this lesson we solve the problem 2 of the problems section on Loops.
In this lesson we solve the problem 3 of the problems section on Loops.
In this lesson we solve the problem 4 of the problems section on Loops.
In this lesson we solve the problem 5 of the problems section on Loops.
On this lecture we make a brief introduction to data structures in Lua.
On this lecture we see how we can implement arrays using tables in Lua.
On this lecture we study matrices in Lua.
On this lesson we introduce the Stack data structure.
On this lecture we learn how to implement the stack data structure in Lua.
On this lecture we introduce the stack problems section.
In this lesson we solve the problem 1 of the problems section on Stacks.
On this lecture we solve the problem 1 using the stack data structure.
On this lesson we solve problem 2 of the problems section on Stacks.
On this lesson we solve problem 3 of the problems section on Stacks.
On this lesson we introduce the Queue data structure.
On this lecture we learn how to implement the queue data structure in Lua.
In this lesson we solve problem 1 of the problems section on Queues.
In this lesson we solve problem 2 of the problems section on Queues.
In this lesson we solve problem 3 of the problems section on Queues.
In this lesson we introduce the dictionary data structure.
In this lesson we introduce how we can implement dictionaries in Lua.
In this lesson we solve problem 1 of the problems section on Dictionaries.
In this lesson we solve problem 2 of the problems section on Dictionaries.
In this lesson we solve problem 3 of the problems section on Dictionaries.
In this lecture we make a brief introduction to sets in computer science.
In this lecture we learn how to implement the set data structure in Lua.
In this lesson we solve problem 1 of the problems section on Sets.
In this lesson we solve problem 2 of the problems section on Sets.
In this lesson we solve problem 3 of the problems section on Sets.
In this lecture we introduce Binary Trees.
In this lecture we learn how to implement the binary tree data structure in Lua.
In this lesson we solve problem 1 of the problems section on Binary Trees.
In this lesson we solve problem 2 of the problems section on Binary Trees.
In this lesson we solve problem 3 of the problems section on Binary Trees.
In this lesson we solve problem 4 of the problems section on Binary Trees.
We solve problem 5 of the problems section on binary trees.
We solve problem 6 of the problems section on binary trees.
We solve problem 7 of the problems section on binary trees.
We solve problem 8 of the problems section on binary trees.
We solve problem 9 of the problems section on binary trees.
In this lesson we introduce Graphs.
In this lesson we study the two main representations of graphs.
The adjacency list and the adjacency matrix.
In this lecture we learn how to implement the graph data structure in Lua.
In this lecture we introduce the Depth First Search Algorithm.
In this lesson we solve problem 1 of the problems section on Depth First Search.
In this lesson we solve problem 2 of the problems section on Depth First Search.
In this lesson we solve problem 3 of the problems section on Depth First Search.
In this lesson we solve problem 4 of the problems section on Depth First Search.
OpenCourser helps millions of learners each year. People visit us to learn workspace skills, ace their exams, and nurture their curiosity.
Our extensive catalog contains over 50,000 courses and twice as many books. Browse by search, by topic, or even by career interests. We'll match you to the right resources quickly.
Find this site helpful? Tell a friend about us.
We're supported by our community of learners. When you purchase or subscribe to courses and programs or purchase books, we may earn a commission from our partners.
Your purchases help us maintain our catalog and keep our servers humming without ads.
Thank you for supporting OpenCourser.