(s: &str)
| 19 | //This function is only used to demonstrate what Scribe does in a easy to read format. |
| 20 | pub fn run_example(yul_code: &str, expected_output: MidenResult) { |
| 21 | fn print_title(s: &str) { |
| 22 | let s1 = format!("=== {} ===", s).blue().bold(); |
| 23 | println!("{}", s1); |
| 24 | println!(" "); |
| 25 | } |
| 26 | println!(); |
| 27 | println!(); |
| 28 | print_title("Input Yul"); |
no outgoing calls
no test coverage detected