Guest User

Untitled

a guest
Oct 19th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. ruby-1.9.2-p0 :069 > f = Foo.new
  2. => #<Foo:0x0000010a87c8b8>
  3.  
  4. ruby-1.9.2-p0 :075 > module Dupa
  5. ruby-1.9.2-p0 :076?> def cycki
  6. ruby-1.9.2-p0 :077?> "fajne sa"
  7. ruby-1.9.2-p0 :078?> end
  8. ruby-1.9.2-p0 :079?> end
  9. => nil
  10.  
  11. ruby-1.9.2-p0 :080 > f.extend(Dupa)
  12. => #<Foo:0x0000010a87c8b8>
  13.  
  14. ruby-1.9.2-p0 :081 > f.cycki
  15. => "fajne sa"
Add Comment
Please, Sign In to add comment