Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/usr/bin/env ruby
- require 'core.rb'
- class Sample < Core
- def dothis
- core = Core.new()
- core.target = "http://example.com"
- puts core.target
- end
- end
- sample = Sample.new()
- sample.dothis()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement