Improving my knowledge of Rust by implementing the interpreter from the first part of R. Nystrom's book.
Find a file
Emmanuel BENOîT d8dba3ac5f Rewrote value storage and implemented class instantiation
* Probably not the last time.
  * Object-like things (functions, classes, etc...) are stored as
    ref-counted cells.
  * Separate data structure for native functions.
  * with_callable() method on value to run specific code on objects
    that are callable
  * Instance type added.
  * Instance construction implemented
2023-01-08 10:40:36 +01:00
src Rewrote value storage and implemented class instantiation 2023-01-08 10:40:36 +01:00
.gitignore Initial, empty project 2022-12-30 15:53:19 +01:00
Cargo.lock Cargo manifest - Added dependency on itertools 2023-01-02 19:49:27 +01:00
Cargo.toml Cargo manifest - Added dependency on itertools 2023-01-02 19:49:27 +01:00