rs-basic/src/main.rs
PlexSheep c66137d79d
Some checks failed
Cargo Format, Check and Test / cargo test (push) Has been cancelled
rustfmt needs something to do
2024-01-10 21:28:56 +01:00

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