mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-08-10 08:44:28 +02:00
[ruby/en] bitwise xor operator
Basic arithmetic bitwise xor operator example
This commit is contained in:
@@ -40,6 +40,7 @@ You shouldn't either
|
|||||||
35 / 5 #=> 7
|
35 / 5 #=> 7
|
||||||
2**5 #=> 32
|
2**5 #=> 32
|
||||||
5 % 3 #=> 2
|
5 % 3 #=> 2
|
||||||
|
5 ^ 6 #=> 3
|
||||||
|
|
||||||
# Arithmetic is just syntactic sugar
|
# Arithmetic is just syntactic sugar
|
||||||
# for calling a method on an object
|
# for calling a method on an object
|
||||||
|
Reference in New Issue
Block a user