Home
Random
Nearby
Log in
Settings
Donate Now
If Wikipedia is useful to you, please give today.
About Wikipedia
Disclaimers
Search
Comparison of programming languages (string functions): Difference between revisions
Article
Talk
Language
Watch
View history
Edit
Browse history interactively
← Previous edit
Next edit →
Content deleted
Content added
Visual
Wikitext
Revision as of 03:53, 15 August 2018
edit
Loudogni
(
talk
|
contribs
)
48
edits
→
Equality
:
Add Perl 5 and Perl 6 snippets
← Previous edit
Revision as of 03:54, 15 August 2018
edit
undo
Loudogni
(
talk
|
contribs
)
48
edits
→
Equality
:
Fix Perl 5's return values
Next edit →
Line 721:
<syntaxhighlight lang="perl">
# Examples in Perl 5
'hello' eq 'world' # returns
false
0
'hello' eq 'hello' # returns
true
1
</syntaxhighlight>