Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 2nd, 2012  |  syntax: None  |  size: 0.22 KB  |  hits: 12  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. class Nolimit
  2.         def initialize( arg0 )
  3.                 @arg0 = arg0
  4.         end
  5.        
  6.         def out
  7.                 "This here #{@arg0} MAKE EM SAY UGGGHHH!"
  8.         end
  9. end
  10.  
  11. print( "Enter thing: ")
  12. arg0 = gets()
  13.  
  14. thing = Nolimit.new( arg0 )
  15. print( thing.out )