From 8a573ce458ef623430688339d6d809d7d11bffd4 Mon Sep 17 00:00:00 2001 From: WilliamRagstad Date: Mon, 4 Nov 2024 21:15:46 +0100 Subject: [PATCH] Pretty print types! --- src/commands/repl.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/repl.rs b/src/commands/repl.rs index 952ba5a..3bc3856 100644 --- a/src/commands/repl.rs +++ b/src/commands/repl.rs @@ -70,7 +70,7 @@ pub fn handle_command_repl(args: &ArgMatches, _arg_parser: &mut Command) { println!( "{} {}", "type:".dark_gray(), - value.get_type().to_string().dark_gray() + value.get_type().pretty_print_color() ); } }