use crate::errors::{Error, EvalResult}; pub fn interpret(code: String) -> EvalResult<()> { Ok(()) }