Clojure 是否有相当于 Python 的 if __name__==“__main__” ?
我会使用-main
,但它只在编译模式下运行,非解释模式。
我会使用 (if (.isAbsolute (java.io.File.*file*)) (main *command-line-args*))
,但它会在任何 (load) 期间运行脚本的编写。
Possible Duplicate:
What is the clojure equivalent of the Python idiom “if name == 'main'”?
I would use -main
, but it only runs in compiled mode, not interpreted mode.
I would use (if (.isAbsolute (java.io.File. *file*)) (main *command-line-args*))
, but that runs during any (load)
ing of scripts.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
的重复内容 clojure 的等价物是什么Python 习语“if __name__ == '__main__'”?。我想我应该“投票结束这个重复的问题”,但我不知道如何做;有人可以随意编辑此内容或告诉我正确的技术。
Duplicate of What is the clojure equivalent of the Python idiom "if __name__ == '__main__'"?. I guess I'm supposed to "vote to close this question as a duplicate" but I can't figure out how; someone feel free to edit this or inform me of the proper technique.