We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf139ac commit a5f53afCopy full SHA for a5f53af
ulisp.hpp
@@ -8003,7 +8003,7 @@ void repl (object* env) {
8003
pfstring(" : ", pserial);
8004
pint(BreakLevel, pserial);
8005
}
8006
- pfstring("[Ready.]\n", pserial);
+ pfstring("[Ready.]\n> ", pserial);
8007
Context = NIL;
8008
object* line = read(gserial);
8009
if (BreakLevel && line == nil) { pln(pserial); return; }
@@ -8012,6 +8012,7 @@ void repl (object* env) {
8012
pfl(pserial);
8013
line = eval(line, env);
8014
8015
+ pfstring("\n=> ", pserial);
8016
printobject(line, pserial);
8017
unprotect();
8018
0 commit comments