firedbg-rust-debugger 1.74.1

FireDBG Debugger Engine for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
fn hello(i: i32) -> String {
    format!("hello {i}")
}

fn world() -> String {
    hello(11)
}

fn main() {
    println!("{}", hello(22));
    println!("{}", world());
}