Home / cat / assign 
Assignments
Syntax
Destination = Expression

Assigns the value of an expression to one of the following elements:

Some instructions that return something may use the assignment syntax too: EXEC, NEW, OPEN, RAISE, SHELL.

Example
iVal = 1972
Name = "[/def/gambas]"
hObject.Property = iVal
cCollection[sKey] = Name
...


See also
Assignment Operators  EXEC  NEW  OPEN  RAISE  SHELL