Advertisement
Guest User

Untitled

a guest
Mar 5th, 2012
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. #!/usr/bin/env ruby
  2. require 'core.rb'
  3.  
  4. class Sample < Core
  5. def dothis
  6. core = Core.new()
  7. core.target = "http://example.com"
  8. puts core.target
  9. end
  10. end
  11.  
  12. sample = Sample.new()
  13. sample.dothis()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement