7 lines
126 B
Text
7 lines
126 B
Text
data s, t;
|
|
# Copy -t- into -s-
|
|
b_copy(s, t);
|
|
# Set -s- as a reference of the object -t- is pointing
|
|
b_set(s, t);
|
|
# or:
|
|
s = t;
|