Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 506 Bytes

File metadata and controls

15 lines (9 loc) · 506 Bytes

Embedded Lua in C++ tutorial

This repository contains the code and notes that I took while following the series "Embedding Lua in C++" From Dave Poo in YouTube.

How to run it?

You will need CMake installed on your system.

git clone <this repo> && cd <this repo> && mkdir build && cd build && cmake && make && ./runme

What I learned?

  • How to combine and use the Lua C API with C++.
  • How to use Lua as a configuration language for more advanced C++ projects.
  • Some fancy features of C++.