chore(tvix/eval): bootstrap some evaluator boilerplate

Change-Id: I7770a20948d18a8506c2418dea21202aa21a6ddc
Reviewed-on: https://cl.tvl.fyi/c/depot/+/6064
Tested-by: BuildkiteCI
Reviewed-by: grfn <grfn@gws.fyi>
This commit is contained in:
Vincent Ambo 2022-08-04 16:43:51 +03:00 committed by tazjin
parent a9b2157fba
commit 8921688334
3 changed files with 64 additions and 1 deletions

5
tvix/eval/src/eval.rs Normal file
View file

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