
= TODO LIST =
== Interpreter kernel ==
* interface objects in hash tables
* delete temporary variables after use
* coroutines
* continuations
* custom detstructors

== Library ==
* reverse iterator
* cycling iterator
* iterator: tee
* extend for objects
* reverse slice for lists
* rotate slice for lists
* insert for lists
* regular expressions
* graphics
* powmod
* hash long

=== Linear algebra ===
* polymorphic arrays
  * array to list
* homogeneous arrays
  * BLAS compatible interface

=== OS Interface ===
* change directory
* list files, subdirectories
* file access

=== Network, Cryptography ==
* SHA3-256 interface
* AES-256 interface
* ECDH interface
* sockets
* TLS-1.3 sockets
* https interface


== Audits ==
* break 'r in vm.rs: replace vs. clone
* overflow by integer arithmetic
* overflow by type conversion
* search for "as usize", "as isize", "as i32", "as u32", etc.


= DONE =
== Interpreter kernel ==
* format strings
* try-catch
* exception objects
* load a module only once, then Rc::clone
* floating point range to list
* operator overloading
* multiple dispatch in operator overloading
* env-pointer in Interface::to_string

== Linear Algebra ==
* polymorphic arrays
  * scalar product
  * absolute value of a vector
  * matrix multiplication


