RosettaCodeData/Task/Copy-a-string/Aime/copy-a-string-2.aime
2023-07-01 13:44:08 -04:00

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;