set (Object control)

Replaces fields of a list with copies of fields from another list.

Arguments

srcList
is a builtin-list or a structure where the fields are taken from.
dstList
is a builtin-list or a structure where the fields are put.

Return values

None

Example

a: (1); b: (2.0 3.0); a b set a print LF print b print
Output:
( 1 ) ( 1 )