diff options
author | ven <vendethiel@hotmail.fr> | 2014-11-16 21:24:13 +0100 |
---|---|---|
committer | ven <vendethiel@hotmail.fr> | 2014-11-16 21:24:13 +0100 |
commit | a8e7f808d33aa1eb933c10ec785526a479df02e7 (patch) | |
tree | 2f9aab9c854978c267a765858187280e5401addf | |
parent | 191e755c8f371991c027c1b14df8ccbcda14071e (diff) | |
parent | acbea221a4037ff34ebf8a9b76b47aaec3c0c755 (diff) |
Merge pull request #867 from ugexe/patch-1
0 // 5 = 0
-rw-r--r-- | perl6.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl6.html.markdown b/perl6.html.markdown index 9f3a03ba..b178de1e 100644 --- a/perl6.html.markdown +++ b/perl6.html.markdown @@ -1177,7 +1177,7 @@ $obj eqv $obj2; # sort comparison using eqv semantics ## * Short-circuit default operator # Like `or` and `||`, but instead returns the first *defined* value : -say Any // Nil // 0 // 5; #=> 5 +say Any // Nil // 0 // 5; #=> 0 ## * Short-circuit exclusive or (XOR) # Returns `True` if one (and only one) of its arguments is true |