aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.cpp
blob: 8562b2fbd54e6f6711a4f54e516cfd4986a4e327 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*

  description:

  author: Yann Herklotz <ymherklotz@gmail.com>
  date created: DD-MM-YYYY

 */

#include <iostream>

int main(int argc, char** argv) {
    std::cout << "executing " << argv[0] << std::endl;
    std::cout << "arguments given: " << argc-1 << std::endl;
    return 0;
}