fix silly mistake with echo function

This commit is contained in:
Aidan Hahn 2021-10-17 23:07:38 -07:00
parent 2c5d64bc9c
commit 0c2faac9ce
No known key found for this signature in database
GPG key ID: 327711E983899316

View file

@ -29,7 +29,7 @@ pub fn get_echo() -> Function {
args: Args::Lazy(-1),
function: Operation::Internal(
|a: Ast, _b: Rc<RefCell<VTable>>, _c: Rc<RefCell<FTable>>| -> Ctr {
let mut string = String::from("echo");
let mut string = String::from("");
if !circuit(a, &mut |arg: &Ctr| {
match arg {
// should be a thing here