Advertisement
Guest User

Untitled

a guest
Jun 20th, 2013
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.23 KB | None | 0 0
  1. RubyVM::InstructionSequence.compile_option = {
  2.   :tailcall_optimization => true,
  3.   :trace_instruction => false
  4. }
  5.  
  6. require_relative 'stuff'
  7.  
  8.  
  9. #########################################
  10. #stuff.rb
  11. def foo
  12.   foo if true
  13. end
  14.  
  15. foo
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement