diff options
| -rw-r--r-- | ruby.html.markdown | 6 | 
1 files changed, 5 insertions, 1 deletions
| diff --git a/ruby.html.markdown b/ruby.html.markdown index 6114c14e..8720fec6 100644 --- a/ruby.html.markdown +++ b/ruby.html.markdown @@ -41,7 +41,11 @@ You shouldn't either  35 / 5 #=> 7  2**5 #=> 32  5 % 3 #=> 2 -5 ^ 6 #=> 3 + +# Bitwise operators +3 & 5 #=> 1 +3 | 5 #=> 7 +3 ^ 5 #=> 6  # Arithmetic is just syntactic sugar  # for calling a method on an object | 
