Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
3
Task/Copy-a-string/Aime/copy-a-string-1.aime
Normal file
3
Task/Copy-a-string/Aime/copy-a-string-1.aime
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
text s, t;
|
||||
t = "Rosetta";
|
||||
s = t;
|
||||
7
Task/Copy-a-string/Aime/copy-a-string-2.aime
Normal file
7
Task/Copy-a-string/Aime/copy-a-string-2.aime
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue