7 lines
59 B
C++
7 lines
59 B
C++
|
|
template <typename T>
|
|
T diff(T a, T b)
|
|
{
|
|
return a - b;
|
|
}
|