zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 90b320d0e90c4daa5dcad6248623a69b3f7f2ab1 (tree)
parent b183b612c938a8c9949fee02fa55038273595496
Author: Andrew Kelley <andrew@ziglang.org>
Date:   Wed, 23 Sep 2020 14:50:52 -0700

use ascii range for the --watch REPL prompt

Diffstat:
Msrc/main.zig | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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(); }