Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • D

Idiom #162 Execute procedures depending on options

execute bat if b is a program option and fox if f is a program option.

import std.getopt;
void main(string[] args)
{
    void bat(){} void fox(){}
    getopt(args, "b", &bat, "f", &fox);
}

std.getopt allows to associate functions to arguments.
#include <unistd.h>
int main(int argc, char * argv[])
{
        int optch;
        while ((optch = getopt(argc, argv, "bf")) != -1) {
                switch (optch) {
                        case 'b': bat(); break;
                        case 'f': fox(); break;
                }
        }
        return 0;
}

New implementation...
Bzzzzzzzzzz