var

Provides access to the generalized variable library.

Good to know: No matter how hard you try, you cannot set anything to the 'ThingNo' variable.

The basics

The ones between '<' and '>' are changed by the user.

var $<VarriableName> -> "<Content>";

// OR save as script output

var $<VarriableName> -> as <ScriptType> "<Script>";

Example

var $test -> "hello";

var $optest -> as cf "echo hi";

msg "test: $test and optest: $optest"
//Coded with BH Beta 0.1.0
Output:
test: hello and optest: hi

Last updated