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

Content deleted Content added
Loudogni (talk | contribs)
Uppercase: Add Perl 5 and Perl 6 snippet
Loudogni (talk | contribs)
Line 2,979:
# Example in Perl 6
uc("Wiki means fast?"); # "WIKI MEANS FAST?"
"Wiki means fast?".uc; # "WIKI MEANS FAST?"
</syntaxhighlight>