Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 473 Bytes

README.md

File metadata and controls

32 lines (24 loc) · 473 Bytes

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.