Skip to content

Instantly share code, notes, and snippets.

@mayfer
Created July 9, 2014 00:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mayfer/134073972aeb9fc5c87d to your computer and use it in GitHub Desktop.
Save mayfer/134073972aeb9fc5c87d to your computer and use it in GitHub Desktop.
User input example
puts "Enter A"
a = gets.chomp
puts "Enter B"
b = gets.chomp
c = Integer(a) + Integer(b)
puts c
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment