Skip to content

Instantly share code, notes, and snippets.

@andreacfm
Created June 11, 2011 23:11
Show Gist options
  • Select an option

  • Save andreacfm/1021068 to your computer and use it in GitHub Desktop.

Select an option

Save andreacfm/1021068 to your computer and use it in GitHub Desktop.
ruby_gets_chomp
print "What is your name? "
$stdout.flush
name = gets.chomp
puts 'Hi ' + name + '!!!' + name
#=> Hi andrea!!!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment