add newline to end of output
authorJacob Lifshay <programmerjake@gmail.com>
Thu, 28 May 2020 05:09:40 +0000 (22:09 -0700)
committerJacob Lifshay <programmerjake@gmail.com>
Thu, 28 May 2020 05:09:40 +0000 (22:09 -0700)
src/main.rs

index 3647f97364bd85895e5695f9874edf6713b757d6..657466b7e213bc69f649d87b857893eef5a0f831 100644 (file)
@@ -209,4 +209,5 @@ fn main() {
         }
     }
     serde_json::to_writer_pretty(std::io::stdout().lock(), &cases).unwrap();
+    println!();
 }