Skip to content

Parameter types

Craig Edwards edited this page Apr 28, 2023 · 3 revisions

Parameter types

In the documentation below, the following parameter types are used:

  • statement Another single statement, and its parameters where applicable.
  • integer-expression A mathematical expression or simple value that evaluates to an integer value, e.g. 7 or A + 6.
  • real-expression A mathematical expression or simple value that evaluates to a real value, e.g. 7.5 or A# + 2.8 + B.
  • string-expression A string expression or simple constant value that evaluates to a string value, e.g. "hello" or "hi " + A$
  • expression Any of the three parameter types above, where the value should match whatever is applicable, e.g. string-expression for a string variable, etc.
  • string-variable A string variable name, e.g. mystr$
  • integer-variable An integer variable name, e.g. val
  • real-varaible A real varaible name, e.g. radius#
  • variable-name Any valid variable name from the types shown above
  • printable A list of one or more of all of the above choices, separated by , or ;, and optionally terminated by a ;. If the list is not terminated by a ; symbol, a line feed is added to the end of the output created. When separating values, a , causes the values to be separated by tabulation, otherwise there is no spacing between the values.
Clone this wiki locally