可能重复:
What is the clojure equivalent of the Python idiom “if name == 'main'”?
我会使用-main
,但它只能在编译模式下运行,而不是解释模式。
我会使用(if (.isAbsolute (java.io.File. *file*)) (main *command-line-args*))
,但这会在任何(load)
脚本中运行。
答案 0 :(得分:2)
What is the clojure equivalent of the Python idiom "if __name__ == '__main__'"?的重复。我想我应该“投票把这个问题视为重复”,但我无法弄清楚如何;有人可以随意编辑或通知我正确的技术。