References References Lua 5.4 Reference Manual , which is also the requirements document for this project. “Lua Programming (4th Edition)”, the official Lua tutorial. Althou...
Preface Content Preface This series was written in Chinese originally. This English version is mainly translated by Google Translate . So please forgive me for the terrible ...
Compilation principle Compiled and Interpreted language Parse and Execute Compilation principle The principle of compilation is a very profound and mature subject. It is not ...
Function Function This chapter introduces functions. There are two types of functions in Lua: Lua function, defined in Lua; External functions are generally implemented in th...
Unicode and UTF-8 Unicode and UTF-8 Concepts Garbled Code fn main() { } Modify the Code Conversion from &str, String, &[u8], Vec to Value Test Summarize Unicode and UTF...
To Be Continued To Be Continued We have implemented the core features of the Lua interpreter. Still, we’re far from our original goal - a complete, performant, production-grade...