From: Jacob Lifshay Date: Thu, 28 May 2020 05:09:40 +0000 (-0700) Subject: add newline to end of output X-Git-Tag: v0.2.0~53 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4f5e64b724089e9033403484fd05746a36721bb3;p=power-instruction-analyzer.git add newline to end of output --- diff --git a/src/main.rs b/src/main.rs index 3647f97..657466b 100644 --- a/src/main.rs +++ b/src/main.rs @@ -209,4 +209,5 @@ fn main() { } } serde_json::to_writer_pretty(std::io::stdout().lock(), &cases).unwrap(); + println!(); }