Copy a string: Difference between revisions

add a method of copying a string in PostScript
m (→‎{{header|Ada}}: syntax highlighting)
(add a method of copying a string in PostScript)
Line 310:
$src = "Hello";
$dst = $src;
=={{header|PostScript}}==
In PostScript,
 
<pre>
(hello) dup cvn dup length string cvs
</pre>
=={{header|Pop11}}==
 
Anonymous user