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 function.
Does D have a way to do this? Python has if __name__=="__main__": main()
, but the weak
syntax in C seems much closer.
Yes, using version directives, which require special options to rdmd and dmd.
scriptedmain.d:
test.d:
Example:
Also posted on RosettaCode.