propose other fix
This commit is contained in:
parent
b36606ae37
commit
50237302b9
1 changed files with 2 additions and 1 deletions
|
@ -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?
|
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
|
"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() {
|
fn main() {
|
||||||
println!("Hello, world!");
|
dbg!("Hello, world!");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue