Content deleted Content added
→Format: Add Perl 6 snippet |
→Inequality: Add Perl 5 and Perl 6 snippets |
||
Line 1,314:
;; Example in Clojure
(not= "hello" "world") ; ⇒ true
</syntaxhighlight>
<syntaxhighlight lang="perl">
# Example in Perl 5
'hello' ne 'world' # returns 1
</syntaxhighlight>
<syntaxhighlight lang="perl6">
# Example in Perl 6
'hello' ne 'world' # returns true
</syntaxhighlight>
|