Skip to content

Standard Lua Libraries

Keith McGahey edited this page Jul 26, 2026 · 2 revisions

Standard Lua Libraries

The following Lua 5.4 standard libraries are available:

Library Description
base Core functions (print, type, pairs, ipairs, tonumber, tostring, etc.)
table Table manipulation (table.insert, table.remove, table.sort, etc.)
string String manipulation (string.sub, string.format, string.match, etc.)
math Math functions (math.sin, math.random, math.floor, etc.)

Not available (for sandboxing): io, os, package, debug

Also not registered: utf8, coroutine

Clone this wiki locally