10 lines
85 B
Ruby
10 lines
85 B
Ruby
#!/usr/bin/ruby
|
|
|
|
str = "Привет"
|
|
|
|
def str.bye
|
|
"Пока!"
|
|
end
|
|
|
|
puts str.bye
|