Skip to content

Instantly share code, notes, and snippets.

@mauriciopoppe
Created April 6, 2016 01:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mauriciopoppe/e31aae162d84b3dce66af548c20fd6ec to your computer and use it in GitHub Desktop.
Save mauriciopoppe/e31aae162d84b3dce66af548c20fd6ec to your computer and use it in GitHub Desktop.
#include<iostream>
#include "project/Vector.hpp"
using namespace std;
int main () {
Vector a(1,2), b(2, 1);
a = a + b;
a.print();
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment