How can I emulate this Python idiom in OCaml?
if __name__=="__main__":
main()
See RosettaCode for examples in other programming languages.
|
How can I emulate this Python idiom in OCaml?
See RosettaCode for examples in other programming languages.
| |||
|
feedback
|
|
There is no notion of main module in Ocaml. All the modules in a program are equal. So you can't directly translate this Python idiom. The usual way in Ocaml is to have a separate file containing the call to There is a way to get at the name of the module, but it's rather hackish, as it is intended for debugging only. It violates the usual assumption that you can rename a module without changing its behavior. If you rely on it, other programmers reading your code will curse you. This method is provided for entertainment purposes only and should not be used in real life.
You can compare the name of the compilation unit with | |||||||||||||||
feedback
|
scriptedmain.ml:
test.ml:
Posted on RosettaCode. | |||||||||
feedback
|