rs-basic/src/main.rs

14 lines
285 B
Rust
Raw Normal View History

2023-09-12 16:21:54 +02:00
fn main() {
2023-09-12 17:01:33 +02:00
println!(
2024-01-10 21:24:00 +01:00
"SUCCESS!!!
2023-09-12 18:45:10 +02:00
This is the default executable! It does not do much, use another executable.
2023-09-12 17:01:33 +02:00
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`
2024-01-10 21:24:00 +01:00
"
);
2023-09-12 16:21:54 +02:00
}