We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8bcac2b commit f5fdd1bCopy full SHA for f5fdd1b
src/main.rs
@@ -28,13 +28,13 @@ fn main() {
28
std::process::exit(1);
29
}
30
31
- print!("{}", b64_encoded_json_value_to_string(&secret_data[secret_key]));
+ println!("{}", b64_encoded_json_value_to_string(&secret_data[secret_key]));
32
std::process::exit(0);
33
34
35
for entry in secret_data.entries() {
36
let value = b64_encoded_json_value_to_string(entry.1);
37
- print!("{}: {}", entry.0, value);
+ println!("{}: {}", entry.0, value);
38
39
40
0 commit comments