Skip to content

Instantly share code, notes, and snippets.

@njlr
Created May 15, 2017 16:01
Show Gist options
  • Save njlr/55a403dbc9a5c94122f346735ad0f42a to your computer and use it in GitHub Desktop.
Save njlr/55a403dbc9a5c94122f346735ad0f42a to your computer and use it in GitHub Desktop.
#include <iostream>
#include <mathutils/add.hpp>
int main() {
std::cout << "Hello, world. " << std::endl;
std::cout << "3 + 4 = " << add(3, 4) << std::endl;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment