Search code examples
d

What is D's version of C++'s system function?


How do I execute a command in the system shell in D (preferably Tango)?


Solution

  • tango.stdc.stdlib should, as tango's docs say,

    provide[s] an essentially complete interface to the standard C library (according to ISO/IEC 9899:1999)

    (stdlib.h is where C defines system).