1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-06 23:06:49 +02:00

Merge pull request #867 from ugexe/patch-1

0 // 5 = 0
This commit is contained in:
ven
2014-11-16 21:24:13 +01:00

View File

@@ -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