aboutsummaryrefslogtreecommitdiffstats
path: root/test/vector2d_test.cpp
blob: 2eb00de42f41fc65c78d1d138fd4af8a9b9131ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "vector2d.hpp"

#include <iostream>

int main()
{
	yage::Vector2D v;
	yage::Vector2D v2(1, 5);

	v=v2+2;

	std::cout<<v<<'\n';

	return 0;
}