ASCII Codes
ASCII is an acronym for American Standard Code for Information Interchange, is a character encoding standard for electronic communication. ASCII codes represent text ...
HTML Elements
HTML entities are used to display "special" characters in HTML, which are characters that: can be misinterpreted as HTML markup, are invisible characters such as non-breaking ...
HTML Elements
HTML entities are used to display "special" characters in HTML, which are characters that: can be misinterpreted as HTML markup, are invisible characters such as non-breaking ...
Creating Lua Maps
Maps , often also called Dictionaries and associative arrays , are data structures that organize elements such that each element can be easily retrieved by its name, or ...
Modifying Lua Maps
Maps can be modified after they are created. Starting from the following map: localx={ a=1, b=2, c=3, d=4, } let's look at modifying existing values in the map. As a saw in ...
Iterating Over Lua Maps
Iterating over a map done via the pairs function, which produces key, value pairs for each element in the map. Starting from the following map: localx={ a=1, b=2, c=3, d=4, ...
tail
The tail command is the complement of the head command, and filters a stream so that only the end of the stream is passed to stdout . This is often used to get a quick summary of ...
...
Lua Tables
Lua implements a single data structure , which is implemented as a general-purpose collection that encompasses functionality that is usually implemented by several ...
Lua's Table Library
The table library contains a collection of functions that operate on tables. In most cases these functions expect a specified "kind" of table, most often a list. Whenever ...