about summary refs log tree commit diff
path: root/tvix/eval/src/eval.rs
blob: 89a375b69a32253ebc38b92548059f338c99c707 (plain) (blame)
1
2
3
4
5
use crate::errors::{Error, EvalResult};

pub fn interpret(code: String) -> EvalResult<()> {
    Ok(())
}