made work: inserting a value in a list at a given index

This commit is contained in:
Odweta
2023-12-24 12:55:56 +01:00
parent 342ad58b51
commit 7233f8c8af
5 changed files with 97 additions and 83 deletions
+10 -10
View File
@@ -49,19 +49,19 @@ Examples of this work of art are in the `/examples/` directory of this repo.
#### What works so far:
+ Creating a list
+ Pushing into a list
+ Printing a list
+ Popping the last value of a list
+ Cleanup of a list
+ Vectors inside of a list
1. Creating a list
2. Pushing into a list
3. Printing a list
4. Popping the last value of a list
5. Cleanup of a list
6. Vectors inside of a list
7. Inserting at a given index
#### TODO:
1. Inserting at a given index
2. Verify multi-dimensional lists working - lists of lists
3. Get/set at a given index
4. Remove at a given index
1. Verify multi-dimensional lists working - lists of lists
2. Get/set at a given index
3. Remove at a given index
## Installation