Search code examples
d

Is there any analogue of EXIT_SUCCESS and EXIT_FAILURE in D


In C / C++ there are macros EXIT_SUCCESS and EXIT_FAILURE. What are their analogue in D?


Solution

  • Both EXIT_SUCCESS and EXIT_FAILURE are defined in D as well. Simply import core.stdc.stdlib to use them.