From acbb619269a719827e9dd4325f44302bffb7706b Mon Sep 17 00:00:00 2001 From: Jake Date: Tue, 24 Sep 2024 12:25:08 -0700 Subject: [PATCH] Format --- src/main.rs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index fc2e449..41a0355 100644 --- a/src/main.rs +++ b/src/main.rs @@ -85,7 +85,12 @@ fn interactive(verbose: bool, asm: Option) { p.set_asm_arch(a); } - println!("\n{} {} -- {}", color!(Color::YELLOW, bold!(">").as_str()), bold!("Component").as_str(), bold!("v0.1.0").as_str()); + println!( + "\n{} {} -- {}", + color!(Color::YELLOW, bold!(">").as_str()), + bold!("Component").as_str(), + bold!("v0.1.0").as_str() + ); println!("------------------------------------------------------"); println!("A programming language for math using postfix notation"); println!("-- Source: https://github.com/JakeRoggenbuck/component");