Add back interpreter directives

This commit is contained in:
greg 2017-01-12 21:51:00 -08:00
parent c50be58cd2
commit b04a8f0092
1 changed files with 3 additions and 0 deletions

View File

@ -123,6 +123,9 @@ impl<'a> Repl<'a> {
break;
}
Ok(Input(ref input)) => {
if self.handle_interpreter_directive(input) {
continue;
}
let output = self.input_handler(input);
println!("{}", output);
}