Prepend extra HLL source (e.g. klog.hll) to user_src and compile as one unit, linked against the stdlib.
(extra: &str, user_src: &str)
| 134 | ); |
| 135 | } |
| 136 | |
| 137 | // Prepend extra HLL source (e.g. klog.hll) to user_src and compile as one unit, |
| 138 | // linked against the stdlib. |
| 139 | fn run_with(extra: &str, user_src: &str) -> (String, Option<i64>) { |
| 140 | run_hll(&format!("{extra}\n{user_src}")) |
| 141 | } |