(v: bool)
| 13 | fn f32(v: f32) -> f32 { println!("\nf32\t{v}"); v } |
| 14 | fn f64(v: f64) -> f64 { println!("\nf64\t{v}"); v } |
| 15 | fn bool(v: bool) -> bool { println!("\nbool\t{v}"); v } |
| 16 | fn static_str(v: &'static str) -> &'static str { println!("\n&str\t{v}"); "hello" } |
| 17 | fn result_ok(v: i32) -> Result<i64, i64> { println!("\nok\t{v}"); Ok(0x1234) } |
| 18 | fn result_err(v: i32) -> Result<i32, i32> { println!("\nerr\t{v}"); Err(0x5678) } |