all repos — hex @ 7c81e80fc10f5b1a59ec28c0ace26e6c2cc4ed5d

A tiny, minimalist, slightly-esoteric concatenative programming lannguage.

Fixes.
h3rald h3rald@h3rald.com
Sat, 07 Dec 2024 19:10:34 +0100
commit

7c81e80fc10f5b1a59ec28c0ace26e6c2cc4ed5d

parent

0e251b925db4fdd6834213b960626232efa12a16

1 files changed, 6 insertions(+), 1 deletions(-)

jump to
M hex.chex.c

@@ -3889,10 +3889,15 @@ static void prompt()

{ // no prompt needed on browser } +#elif !defined(BROWSER) && defined(__EMSCRIPTEN__) +static void prompt() +{ + printf(">\n"); +} #else static void prompt() { - printf("> "); // Prompt + printf("> "); fflush(stdout); } #endif