Compare commits

...

2 commits

Author SHA1 Message Date
Goren Barak 4132a68fb3 cleaned up code 2024-01-03 23:24:08 -05:00
Goren Barak ec380f8a3a changed stack trace formatting 2024-01-03 23:23:07 -05:00

View file

@ -139,8 +139,9 @@ impl<'a> Vm {
match parser.inner_next() {
Some("stack") => {
for item in &self.stack {
println!("{:?}", item);
print!("{:?} ", item);
}
println!("<- TOP");
},
Some("data") => {
println!("{:?}", self.dictionary.data);