Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Current »

Function: set() / =

Assigns a value to a variable.

Syntax

  1. set(variable, value)
  2. variable=value
ArgumentTypeDescription
variableVariableName of the variable
valueAnyValue to be assigned to the variable

Examples

set($colour, "brown")

Sets the variable $colour the value "brown".

$colour = "brown"

Sets the variable $colour the value "brown".

See Also

  • No labels