Comparison of programming languages (string functions): Difference between revisions

Content deleted Content added
Loudogni (talk | contribs)
Inequality: Add Perl 5 and Perl 6 snippets
Loudogni (talk | contribs)
left: Add Perl 6 snippet
Line 1,584:
|[[APL (programming language)|APL]]
|}
 
<syntaxhighlight lang="perl6">
# Example in Perl 6
"Hello, there!".substr(0, 6); # returns "Hello,"
</syntaxhighlight>
 
<syntaxhighlight lang="rexx">