main

Code to be mixed in at the top of your main() function.

enum main = q{ version (xgettext) { import core.stdc.stdlib : exit; if (scan) // Prevent unreachable code warning after mixin. exit(0); } };

Examples

void main()
{
    import gettext;
    mixin(gettext.main);

    // Your code.
}

Meta