Skip to content

Instantly share code, notes, and snippets.

@jballanc
Created January 24, 2009 04:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jballanc/51336 to your computer and use it in GitHub Desktop.
Save jballanc/51336 to your computer and use it in GitHub Desktop.
if $0 == __FILE__
puts "I'm running as an executable"
end
class Test
def say
puts "I'm from a library"
end
end
require 'a'
test = Test.new
test.say
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment