propose other fix

This commit is contained in:
Frank Denzer 2023-06-02 15:37:04 +02:00
parent b36606ae37
commit 50237302b9

View file

@ -3,7 +3,8 @@ To actually run hello world in vs code, we need to set the following in ``Prefer
How fucked up is that?
[{
"rust-analyzer.cargo.buildScripts.overrideCommand": "cargo check --quiet --workspace --all-targets" // here, we removed --message-format=json from the parameter list
or: use dbg!() instead of println!()
}]*/
fn main() {
println!("Hello, world!");
dbg!("Hello, world!");
}