Content deleted Content added
→Compare (integer result): Add Perl 5 and Perl 5 snippet |
→Compare (relational operator-based, Boolean result): Add Perl 6 snippet |
||
Line 425:
% Example in Erlang
"hello" > "world". % returns false
</syntaxhighlight>
<syntaxhighlight lang="perl6">
# Example in Perl 6
"hello" gt "world"; # returns False
</syntaxhighlight>
|