Skip to content

Instantly share code, notes, and snippets.

@jendiamond
Last active December 21, 2015 18:38
Show Gist options
  • Save jendiamond/6348368 to your computer and use it in GitHub Desktop.
Save jendiamond/6348368 to your computer and use it in GitHub Desktop.
Ruby Definitions

definitions...

puts "Addition - Adds values on either side of the operator"

puts "Subtraction - Subtracts right hand operand from the left hand operand"

puts "Multiplication - Multiplies values on either side of the operator"

puts "Division - Divides left hand operand by right hand operand"

puts "Modulus - Divides left hand operand by right hand operand and returns the remainder"

puts "Exponent - Performs exponential (power) calculation on operators"

puts "< <= > >= Comparison Operators"

puts "The assignment operator = assigns the result of an operation to a variable"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment