localmake

Help Contents Variable Definition localmake
local Thing

localmake varname value (library procedure)


command. Makes the named variable local, like local, and assigns it the given value, like make.

Example:

to proc
	localmake "a 1234
	pr a
end
;proc defined
proc		;1234
a		; I don't know how  to a

I think it's better to separate the declaration from the initialization and use local and make rather than localmake.

Because of this I don't make localmake a primitive.

Examples:

References:

local Thing