diff options
Diffstat (limited to '.vim/c-support/codesnippets/main.cc')
-rw-r--r-- | .vim/c-support/codesnippets/main.cc | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/.vim/c-support/codesnippets/main.cc b/.vim/c-support/codesnippets/main.cc deleted file mode 100644 index d87f891..0000000 --- a/.vim/c-support/codesnippets/main.cc +++ /dev/null @@ -1,18 +0,0 @@ -#include <fstream> -#include <iomanip> -#include <iostream> - -using namespace std; - -// === FUNCTION ====================================================================== -// Name: main -// Description: main function -// ===================================================================================== - int -main ( int argc, char *argv[] ) -{ - cout << "\nProgram " << argv[0] << endl << endl; - - return EXIT_SUCCESS; -} // ---------- end of function main ---------- - |