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