()
| 22 | #[ignore] |
| 23 | #[test] |
| 24 | fn debug_execution() { |
| 25 | // You can put a miden program here to debug output, manually modifying it if needed |
| 26 | let execution_value = execute( |
| 27 | r##" |
| 28 | begin |
| 29 | push.5 |
| 30 | mul.5 |
| 31 | end |
| 32 | "## |
| 33 | .to_string(), |
| 34 | vec![], |
| 35 | ) |
| 36 | .unwrap(); |
| 37 | |
| 38 | println!("Miden Output"); |
| 39 | let stack = execution_value.last_stack_state(); |
| 40 | dbg!(&stack); |
| 41 | let _last_stack_value = stack.first().unwrap(); |
| 42 | } |