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

8 lines
126 B
Plaintext

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;