Does such a thing exist?
Ruby:
if __FILE__ == $0
main
end
Perl:
unless(caller) {
main;
}
Lua:
if type(package.loaded[(...)]) ~= "userdata" then
main(arg)
else
module(..., package.seeall)
end
|
Does such a thing exist? Ruby:
Perl:
Lua:
|
||||
| show 2 more comments |
|
Exotic multiline shebangs and argv trickery do the job. See Rosetta Code. scriptedmain.st:
|
|||
|
|
mainfunction which is not run when this code is imported by other code. In other words, Python'sif __name__=="__main__". – mcandre Aug 5 '11 at 18:52mainfunction from the other module/file, import the former and call the latter. – Rosh Oxymoron Aug 5 '11 at 19:09