Skip to content

Instantly share code, notes, and snippets.

@jesusangelm
Created January 20, 2012 21:29
Show Gist options
  • Select an option

  • Save jesusangelm/1649706 to your computer and use it in GitHub Desktop.

Select an option

Save jesusangelm/1649706 to your computer and use it in GitHub Desktop.
Script en Ruby para felicitar a una persona por su cumpleaños - Version sencilla
#!/usr/bin/env ruby
# coding: utf-8
puts "Favor ingresa tu nombre"
nombre = gets.chomp
puts "#{nombre} cuantos años cumples???"
anios = gets.chomp.to_i
anios.times do |num|
puts "#{num.to_s} Feliz Cumpleaños #{nombre}!!!"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment