This commit is contained in:
agra
2026-02-11 02:22:00 +02:00
parent 89fc6427c4
commit 7bb4fe0c5f
7 changed files with 251 additions and 14 deletions

View File

@@ -25,8 +25,11 @@ main :: () {
list := List(s32).{};
append(list, 3);
append(list, 1);
append(list, 4);
append(list, 1);
append(list, 5);
list.append(3);
list.append(4);
list.append(1);
list.append(5);
print("{}\n", list);
}