Assignments
Destination = Expression
Assigns the value of an
expression to one of the following elements:
 |
This cannot be used to set the value returned by a function. To assign the value of a function, use the RETURN statement.
|
Some instructions that return something may use the assignment syntax too:
EXEC,
NEW,
OPEN,
RAISE,
SHELL.
Voorbeeld
iVal = 1972
Name = "Gambas"
hObject.Property = iVal
cCollection[sKey] = Name
...
 |
Visual Basic™ permits the use of the LET statement as a keyword, such as
this is not permitted in Gambas.
But it is not true anymore in Gambas 3.
|