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

Version 1 Next »

Function: set() / =

Assigns a value to a variable.

Syntax

  1. set(variable, value)
  2. variable=value
Argument Type Description
variable Variable Name of the variable
value Any Value 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