diff --git a/compiler/cl-interpret/src/interpret.rs b/compiler/cl-interpret/src/interpret.rs index bc06a3d..7f5a003 100644 --- a/compiler/cl-interpret/src/interpret.rs +++ b/compiler/cl-interpret/src/interpret.rs @@ -126,7 +126,7 @@ impl Interpret for Enum { } impl Interpret for Impl { fn interpret(&self, env: &mut Environment) -> IResult { - println!("TODO: {self}"); + println!("TODO: impl {}", self.target); let Self { target: _, body } = self; body.interpret(env) }