possibility
Description
Instantiates a variable—meaning something that can hold multiple values at one time and at different times throughout the program. This is often used with a RegEx character sequence to play with ambiguity and meaning.
Syntax
possibility: name = value;
where name is the name of the variable, and value is the value of the variable.
Usage
possibility: makeme = `pr(e|a)y`;
This defines a variable with the name makeme and the RegEx value of pr(e|a)y, which matches prey and pray.