add SinglyLinkedList.append procs

This commit is contained in:
pacien
2018-11-26 12:58:43 +01:00
parent eb919c35b2
commit 4e483bb01a
2 changed files with 17 additions and 1 deletions

View File

@@ -10,7 +10,8 @@ const
block SinglyLinkedListTest1:
var L: SinglyLinkedList[int]
for d in items(data): L.prepend(d)
assert($L == "[6, 5, 4, 3, 2, 1]")
for d in items(data): L.append(d)
assert($L == "[6, 5, 4, 3, 2, 1, 1, 2, 3, 4, 5, 6]")
assert(4 in L)