A Look at the Design of Lua
https://cacm.acm.org/magazines/2018/11/232214-a-look-at-the-design-of-lua/fulltext [cacm.acm.org]
2018-10-31 03:59
Lua has a unique set of design goals that prioritize simplicity, portability, and embedding. The Lua core is based on three well-known, proven concepts—associative arrays, first-class functions, and coroutines—all implemented with no artificial restrictions. On top of these components, Lua follows the motto “mechanisms instead of policies,” meaning Lua’s design aims to offer basic mechanisms to allow programmers to implement more complex features.
Reads like a short version of the Programming in Lua book.
source: L