Merge branch 'master' of ssh://git.betalupi.com:33/Mark/daisy

This commit is contained in:
2023-04-10 12:49:09 -07:00
6 changed files with 54 additions and 10 deletions

View File

@@ -10,7 +10,7 @@ fn eval_to_str(s: &str) -> Result<String, ()> {
//let out_str = g.print();
return match evaluate::evaluate(g) {
Ok(x) => Ok(x.print()),
Ok(x) => Ok(x.to_string()),
Err(_) => Err(())
};
}