Skip to content

Programming

mdavis edited this page Jun 20, 2021 · 1 revision

Table of Contents

Overview

Snippet uses the Lua programming language version 5.3.5. All standard libraries are available along with some custom libraries used for this application. For more information about Lua, please see the official manual.

thread

The thread library consists of functions that can alter the current thread of execution.

sleep

thread.sleep(ms)

Sleeps the current thread for the given amount of milliseconds (ms).

Clone this wiki locally