DEV Community

Discussion on: Share a code snippet in any programming language and describe what's going on

Collapse
 
darkwiiplayer profile image
𒎏Wii 🏳️‍⚧️

Nice example, but I think it could be refined somewhat

using (Module.new do
  refine String do
    def like_a_duck
      "#{self} quack quack"
    end
  end
end)

puts "Hello".like_a_duck
Enter fullscreen mode Exit fullscreen mode