Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
89 views

Is there a way to override a module's main function in the D programming language?

If you really need to, you can specify __attribute__((weak)) in C (see scriptedmain). This allows a program to double as API and executable, allowing code that imports the API to overwrite the main ...
2
votes
2answers
72 views

Scripted main in OCaml?

How can I emulate this Python idiom in OCaml? if __name__=="__main__": main() See RosettaCode for examples in other programming languages.
1
vote
1answer
41 views

Does Factor have an equivalent to the Python idiom if __name__==“__main__”: main()?

Factor appears to have a main method like any C-based language: #! /usr/bin/env factor -script USE: io IN: hello : hello ( -- ) "Hello World!" print ; MAIN: hello But Factor does not execute the ...
0
votes
2answers
68 views

Can Pascal units be compiled as executables?

I like my libraries to double as executables. The desired behavior is: $ ./scriptedmain Main: The meaning of life is: 42 $ ./test Test: The meaning of life is: 42 How can I: Get scriptedmain.p to ...