PROGRAMMING LANGUAGES
Lua
Date Published: | |
Last Modified: |
Lua is an extension-based embeddable language. Lua itself is implemented as a stand-alone library, with the goal of being embedded in other applications. It does not have it’s own main()
, it has to be called from a host program running in a different language (e.g. C).
Reference Manual: http://www.lua.org/manual/5.2/manual.html
Functions
Functions in Lua can return more than one value. Awesome! This gets around the semantic issues of passing in variables by reference, just so that you can save data to them (think pointers in C).
Related Content:
- A Tutorial On geopandas
- Python And File Paths
- An Introduction To Asynchronous Programming In Python
- scipy
- Python Virtual Environments