From 18b23bdd7d573bfd30a51ec40500a969e99ba75a Mon Sep 17 00:00:00 2001 From: Stephen Chung Date: Tue, 27 Oct 2020 23:36:05 +0800 Subject: [PATCH] Add blank lines after display. --- examples/repl.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/examples/repl.rs b/examples/repl.rs index f6999b6a..bd0691ef 100644 --- a/examples/repl.rs +++ b/examples/repl.rs @@ -120,16 +120,17 @@ fn main() { *value.read_lock::().unwrap(), ) }); + println!(); continue; } "astu" => { // print the last un-optimized AST - println!("{:#?}", &ast_u); + println!("{:#?}\n", &ast_u); continue; } "ast" => { // print the last AST - println!("{:#?}", &ast); + println!("{:#?}\n", &ast); continue; } _ => (),