1 #include "../../header.h" 2 3 template<> equal(int a,int b)4 bool equal<int>(int a, int b) 5 { 6 return a == b; 7 } 8