LOCALMAKE

Synopsis
LOCALMAKE varname value
Description

LOCALMAKE declares a local variable and assigns it a variable. It is convenient shorthand for the following code:

LOCAL varname
MAKE varname value

Example
TO SAYHELLO
  LOCALMAKE "message [Hello]
  PRINT :message
END

SAYHELLO
Hello

SHOW :message
message has no value

SourceForge.net Logo