Commit 90b320d0e9

Andrew Kelley <andrew@ziglang.org>
2020-09-23 23:50:52
use ascii range for the --watch REPL prompt
1 parent b183b61
Changed files (1)
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();
         }