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

Content deleted Content added
Loudogni (talk | contribs)
Format: Add Perl 6 snippet
Loudogni (talk | contribs)
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>