Skip to content

Instantly share code, notes, and snippets.

@toretore

toretore/e.rb Secret

Created May 30, 2015 15:21
Show Gist options
  • Save toretore/a5e6276e9a8d2427dae1 to your computer and use it in GitHub Desktop.
Save toretore/a5e6276e9a8d2427dae1 to your computer and use it in GitHub Desktop.
puts "Type an integer: "
value = gets
puts "value is: #{value.inspect} - #{value.class}"
value = value.to_i
puts "value is now: #{value.inspect} - #{value.class}"
value = "#{value}"
puts "value is now: #{value.inspect} - #{value.class}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment