school/cs235/lab03/Student_Code/node.cpp

4 lines
89 B
C++

#include "node.h"
node::node(const int value, node* next) : value(value), next(next) {}