make

Help Contents Variable Definition make
Variable Definition local

make varname value
varname=value

command. Assigns the value "value" to the variable named "varname", which must be a word. Variable names are case-insensitive. If a variable with the same name already exists, the value of that variable is changed. If not, a new global variable is created.

Examples:

make "a 1234
:a		;1234  ;-)
a=2345
a		;2345  ;-)
a=[Hallo World!]
pr a		;Hallo World!

See also:

Examples:

References:

Variable Definition local