Compare commits

...

1 commit

Author SHA1 Message Date
585bb41a9d refactor: split at whitespace #1 #15
All checks were successful
cargo devel CI / cargo CI (push) Successful in 1m15s
2024-05-13 16:29:24 +02:00

View file

@ -26,8 +26,8 @@ fn main() {
exit(1);
}
};
let whole = whole.replace('\n', "");
for s in whole.split(' ') {
let split = whole.split_whitespace();
for s in split {
args.push(s.to_string());
}
}