Skip to content

Instantly share code, notes, and snippets.

@fitomad
Created November 12, 2015 10:42
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 fitomad/8e171a0345160ec2d1a1 to your computer and use it in GitHub Desktop.
Save fitomad/8e171a0345160ec2d1a1 to your computer and use it in GitHub Desktop.
#
# Ejemplo para probar la instalación de Ruby
#
class User
# Constructor
def initialize(name)
@name = name
end
# Descripcion de la clase
def to_s
return "It's #{@name}"
end
end
# Creamos un usuario...
user = User.new("me")
# ...y nos saluda
print("Hi! #{user.to_s}")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment