7 lines
125 B
C++

#include <LinkedList/linkedlist.h>
int main() {
Datastructures::LinkedList<int> list;
list.append(5);
list.append(200);
}