var
Provides access to the generalized variable library.
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
test: hello and optest: hi
Last updated