Tagged Questions
7
votes
5answers
2k views
Should I define a main method in my ruby scripts?
In python, a module doesn't have to have a main function, but it is common practice to use the following idiom:
def my_main_function():
... # some code
if __name__=="__main__": # program's ...