String append: Difference between revisions

Added Axe
No edit summary
(Added Axe)
Line 41:
foobar
</pre>
 
=={{header|Axe}}==
{{improve|Axe|This code works but seems to cause system instability in my testing with two static strings separated by some bytes.}}
 
<lang axe>Lbl STRCAT
Copy(r₂,r₁+length(r₁))
r₁
Return</lang>
 
=={{header|BASIC}}==
Anonymous user