Guest User

Untitled

a guest
Sep 12th, 2013
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.12 KB | None | 0 0
  1. class X
  2.   def X.y(x)
  3.     define_method(:y){ x }
  4.   end
  5.   def initialize
  6.     @y = y
  7.   end
  8. end
  9.  
  10. X.y(7)
  11. X.new
Advertisement
Add Comment
Please, Sign In to add comment