MCPcopy Create free account
hub / github.com/ControlCplusControlV/Scribe / debug_execution

Function debug_execution

crates/papyrus/src/executor.rs:24–42  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

22#[ignore]
23#[test]
24fn 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}

Callers

nothing calls this directly

Calls 1

executeFunction · 0.85

Tested by

no test coverage detected