4 lines
89 B
C++
4 lines
89 B
C++
|
#include "node.h"
|
||
|
|
||
|
node::node(const int value, node* next) : value(value), next(next) {}
|