yeyicheng

Untitled

Apr 21st, 2012
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. module A
  2.     def a1
  3.     end
  4.     def a2
  5.     end
  6. end
  7.  
  8. module B
  9.     def b1
  10.     end
  11.     def b2
  12.     end
  13. end
  14.  
  15. class Sample
  16.     include A
  17.     include B
  18.     def s1
  19.     end
  20. end
  21.  
  22. y = Trig.sin(Trig::PI/4)
Advertisement
Add Comment
Please, Sign In to add comment