From 2bb7c5e97111c7c92dbf682ef49c54a229dfcfce Mon Sep 17 00:00:00 2001 From: lonkaars Date: Tue, 14 Feb 2023 18:30:33 +0100 Subject: week 3 deel 1 --- algo1w3/IntLink.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 algo1w3/IntLink.cpp (limited to 'algo1w3/IntLink.cpp') diff --git a/algo1w3/IntLink.cpp b/algo1w3/IntLink.cpp new file mode 100644 index 0000000..a54d449 --- /dev/null +++ b/algo1w3/IntLink.cpp @@ -0,0 +1,11 @@ + +#include "IntLink.h" + +IntLink::IntLink() { } + +IntLink::IntLink(int value, IntLink* next) { + this->value = value; + this->next = next; +} + +IntLink::~IntLink() { } -- cgit v1.2.3