RosettaCodeData/Task/Copy-a-string/Aime/copy-a-string-2.aime

8 lines
126 B
Text
Raw Permalink Normal View History

2013-06-05 21:47:54 +00:00
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;