mgrang / caffeinic-codelets

Coffee, Code, Repeat

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

caffeinic-codelets

Coffee, Code, Repeat

Implementations of various algorithms and data structures in C++.

Usage

Initialize a new C++ program:

./init foobar.cpp

This will create foobar.cpp with the following skeleton code:

#include <iostream>
#include <vector>
using namespace std;

void test() {
}

int main() {
  test();
}

Compile and run the program:

./bld foobar.cpp

This will invoke the system g++ compiler to build your program.

About

Coffee, Code, Repeat


Languages

Language:C++ 99.8%Language:Shell 0.2%