aboutsummaryrefslogtreecommitdiff
path: root/week08/Exercise3.hpp
blob: 9b15db273ec131d65f03f70abc5fef1ad666cad3 (plain) (blame)
1
2
3
4
5
template <class T, class P>
struct Pair {
	T left;
	P right;
};