SETV is a CAOS command used to set a variable to a specific value.
Usage
Syntax: SETV var (variable) val (int or float)
Set var to val. Any previous value of var is overwritten. The type of var will match that of val.
Examples
SETV in conjuction with DIVV to divide on an imaginary command line:
SETV va00 10
DIVV va00 2
OUTV va00
5