We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45c020f commit c9eb352Copy full SHA for c9eb352
src/main.rs
@@ -10,17 +10,14 @@ fn main() {
10
// Current not support interaction mode
11
if args.len() < 2 {
12
println!(
13
- "{}",
14
- format!(
15
- "\
16
- givememoney v{}\n\
17
- To allocate money, input `gmm [total] [each participant separate by space]`\n\
18
- \n\
19
- Check {} for more information and update.\
20
- ",
21
- env!("CARGO_PKG_VERSION"),
22
- env!("CARGO_PKG_REPOSITORY"),
23
- )
+ "\
+ givememoney v{}\n\
+ To allocate money, input `gmm [total] [each participant separate by space]`\n\
+ \n\
+ Check {} for more information and update.\
+ ",
+ env!("CARGO_PKG_VERSION"),
+ env!("CARGO_PKG_REPOSITORY"),
24
);
25
#[cfg(not(target_os = "windows"))]
26
{
0 commit comments