Home > lang > assignment 
 fr de es it nl pl pt pt_BR mk sq ca hu cs tr ar fa id vi ko ja ru zh zh_TW eo
Previous  Next  Edit  Rename  Undo  Refresh  Search  Administration  
Documentation
History
 
Assignments
[ LET ] 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.

Example

iVal = 1972
Name = "Gambas"
hObject.Property = iVal
cCollection[sKey] = Name
...

See also

LET, Assignment Operators, SWAP, EXEC, NEW, OPEN, RAISE, SHELL