Skip to content

Commit f5fdd1b

Browse files
add newline to output
1 parent 8bcac2b commit f5fdd1b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ fn main() {
2828
std::process::exit(1);
2929
}
3030

31-
print!("{}", b64_encoded_json_value_to_string(&secret_data[secret_key]));
31+
println!("{}", b64_encoded_json_value_to_string(&secret_data[secret_key]));
3232
std::process::exit(0);
3333
}
3434

3535
for entry in secret_data.entries() {
3636
let value = b64_encoded_json_value_to_string(entry.1);
37-
print!("{}: {}", entry.0, value);
37+
println!("{}: {}", entry.0, value);
3838
}
3939
}
4040

0 commit comments

Comments
 (0)