From 90b320d0e90c4daa5dcad6248623a69b3f7f2ab1 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Wed, 23 Sep 2020 14:50:52 -0700 Subject: [PATCH] use ascii range for the --watch REPL prompt --- src/main.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.zig b/src/main.zig index a33e8bfc3b..bab3932427 100644 --- a/src/main.zig +++ b/src/main.zig @@ -1516,7 +1516,7 @@ pub fn buildOutputType( var repl_buf: [1024]u8 = undefined; while (watch) { - try stderr.print("🦎 ", .{}); + try stderr.print("(zig) ", .{}); if (output_mode == .Exe) { try comp.makeBinFileExecutable(); }