rs-basic/src/main.rs

14 lines
285 B
Rust

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`
"
);
}