added function to wrap debug messages in an echo command

implemented formatted printing of stack and bookmarks
This commit is contained in:
2024-12-15 00:35:09 +01:00
parent c27089124e
commit 77cd64dd60
9 changed files with 234 additions and 95 deletions
+4
View File
@@ -0,0 +1,4 @@
pub fn debug_print(string: &str) {
println!("echo '{}' && ", string);
}