1
2
3
4
5
6
7
8
9
10
def
not_so_simple
(
str
)
str.define_singleton_method :special?
do
'yes!'
end
str
end
str = not_so_simple
(
'Hello'
)
puts str.special?
# yes!
Enter to Rename, Shift+Enter to Preview
Run