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

Content deleted Content added
Loudogni (talk | contribs)
Compare (integer result): Add Perl 5 and Perl 5 snippet
Loudogni (talk | contribs)
Line 425:
% Example in Erlang
"hello" > "world". % returns false
</syntaxhighlight>
 
<syntaxhighlight lang="perl6">
# Example in Perl 6
"hello" gt "world"; # returns False
</syntaxhighlight>