implement chapter 12 in rust

This commit is contained in:
Sebastian Hugentobler 2025-05-25 16:04:00 +02:00
parent 283155c38b
commit 621c97102a
Signed by: shu
SSH key fingerprint: SHA256:ppcx6MlixdNZd5EUM1nkHOKoyQYoJwzuQKXM6J/t66M
10 changed files with 366 additions and 17 deletions

View file

@ -14,10 +14,12 @@ use thiserror::Error;
use tracing::error;
pub mod callable;
pub mod class;
pub mod cli;
pub mod environment;
pub mod expression;
pub mod function;
pub mod instance;
pub mod interpreter;
pub mod keywords;
pub mod native_functions;