Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

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