Skip to content

Instantly share code, notes, and snippets.

@prodis
Created July 18, 2011 02:14
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 prodis/1088405 to your computer and use it in GitHub Desktop.
Save prodis/1088405 to your computer and use it in GitHub Desktop.
Ruby Fundamental - O início de um novo blog
class Saudacao
def initialize(name)
@name = name
end
def saudar
"Bem vindo, #{@name}!"
end
end
s = Saudacao.new "Ruby Fundamental"
puts s.saudar # => Bem vindo, Ruby Fundamental!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment