Skip to content
Abe Pralle edited this page Sep 7, 2022 · 3 revisions

Syntax

$id(token1,token2,...)
$id(token1 token2 ...)

Description

Meta-command that concatenates and converts one or more tokens into a single identifier token. Most often useful in conjunction with macros. Token arguments can be separated by commas or spaces.

Examples

local abcd = 394
println $id($id(a,b),cd)  # 394

Clone this wiki locally