String length: Difference between revisions

m
→‎{{header|REXX}}: removed the first and last blank lines. -- ~~~~
No edit summary
m (→‎{{header|REXX}}: removed the first and last blank lines. -- ~~~~)
Line 1,495:
 
=={{header|REXX}}==
<lang REXX>sss='123456789abcdef'
say 'the length of sss is:' length(sss)</lang>
sss='123456789abcdef'
say 'the length of sss is:' length(sss)
</lang>
Output:
<pre style="height:30ex;overflow:scroll">
the length of sss is: 15
</pre>