Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 347 Bytes

greeter.md

File metadata and controls

22 lines (18 loc) · 347 Bytes
layout

{% highlight ruby %}

Класс Greeter

class Greeter def initialize(name) @name = name.capitalize end

def salute puts "Привет, #{@name}!" end end

Создаем новый объект

g = Greeter.new("мир")

Результат будет "Привет, Мир!"

g.salute {% endhighlight %}