RosettaCodeData/Task/Copy-a-string/Aime/copy-a-string-2.aime
Ingy döt Net 6f050a029e update
2013-06-05 21:47:54 +00: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;