Index
Tables

CreateTable

createTable ->table

Description

Creates an empty table and pushes it to the stack. Tables are Dictionaries that map string keys to values.

Examples

createTable ->table
1 ->table{"Larry"}
4 ->table{"Moe"}
9 ->table{"Curly"}
trace(<-table)

Index