From: "Jesús Gabriel y Galán" Date: 2008-10-23T00:44:39+09:00 Subject: Re: What is Ruby equivalent of Python's ' if __name__ == "__main__" ' On Wed, Oct 22, 2008 at 5:32 PM, Kenneth McDonald wrote: > In Python, I can use the test indicated in the subject line to determine if > a file is being executed directly, as opposed to being loaded indirectly as > the result of the execution of another file. I haven't been able to find the > Ruby equivalent of this, and would be most grateful is someone could point > me in the right direction. if __FILE__ == $0 end Jesus.