Some checks failed
Cargo Format, Check and Test / cargo test (push) Has been cancelled
30 lines
411 B
Rust
30 lines
411 B
Rust
fn main() {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// rustfmt will hate this
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
println!(
|
|
"SUCCESS!!!
|
|
This is the default executable! It does not do much, use another executable.
|
|
|
|
Select your target like this:
|
|
`cargo run --bin $TARGET`
|
|
|
|
To see a list of all runnable binaries, you can use the following command.
|
|
`cargo run --bin`
|
|
"
|
|
);
|
|
}
|