Copy a string: Difference between revisions

(→‎{{header|REXX}}: changed the wording and style of the REXX section header.)
Line 36:
lv_string2 type string.
lv_string2 = lv_string1.</lang>
 
===Inline Declaration===
{{works with|ABAP|7.4 Or above only}}
DATA(string1) = |Test|.
DATA(string2) = string1.
 
=={{header|ActionScript}}==
Anonymous user