Project

General

Profile

Interfaz » History » Version 3

Version 2 (ana gutierrez, 09/10/2024 05:29 PM) → Version 3/11 (ana gutierrez, 09/10/2024 05:29 PM)

h1. Interfaz

<pre><código de clase="ruby">
# The Greeter class
class Greeter
def initialize(name)
@name = name.capitalize
end

def salute
puts "Hello #{@name}!"
end
end
</código></pre>