pub trait Handler { // Required method fn print(&mut self, scope: &mut Scope, val: Val) -> Result<(), Val>; }
Interface to the outside world