15 lines
321 B
Rust
15 lines
321 B
Rust
#![allow(clippy::disallowed_names)]
|
|
fn main() {
|
|
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`
|
|
"
|
|
);
|
|
}
|