#include "Node.cpp" // this is different from before - rememer the template is a pattern! #include using namespace std; int main(int argc, char* argv[]) { Node node1(5); cout << node1 << endl; return 0; }