made work: get/set at index in list

This commit is contained in:
Odweta
2023-12-25 02:05:26 +01:00
parent b00858c9be
commit 27068b0381
5 changed files with 105 additions and 34 deletions
+3 -4
View File
@@ -36,12 +36,11 @@ Examples of this work of art are in the `/examples/` directory of this repo.
5. Pushing a value at the end of a vector
6. Inserting a value into a vector at a given index
7. Insertion of a vector into another vector
8. Vectors of lists
9. Remove a value at a given index
#### TODO:
1. Vectors of lists
2. Remove a value at a given index
+ You tell me
## Lists (vectors with dynamic types)
@@ -56,11 +55,11 @@ Examples of this work of art are in the `/examples/` directory of this repo.
6. Vectors inside of a list
7. Inserting at a given index
8. Lists of lists
9. Remove at a given index
#### TODO:
1. Get/set at a given index
2. Remove at a given index
+ You tell me