Move iterator to AST

This commit is contained in:
Krzosa Karol
2023-04-01 11:44:49 +02:00
parent 9e077d4d88
commit acf64024b9
3 changed files with 228 additions and 228 deletions

View File

@@ -16,7 +16,6 @@ QueueAddSLL(list: $List, node: $Node, $first = first, $last = last, $next = next
list.first = list.last = node
else
list.last = list.last.next = node
*/
Array :: struct($T: Type)