Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion runtime/runtime.c
Original file line number Diff line number Diff line change
Expand Up @@ -1266,7 +1266,7 @@ extern aint Lread () {
// int result = BOX(0);
aint result = BOX(0);

printf("> ");
printf(" > ");
fflush(stdout);
scanf("%" SCNdAI, &result);

Expand Down
2 changes: 1 addition & 1 deletion runtime32/runtime.c
Original file line number Diff line number Diff line change
Expand Up @@ -1474,7 +1474,7 @@ extern void* Ltl (void *v) {
extern int Lread () {
int result = BOX(0);

printf ("> ");
printf (" > ");
fflush (stdout);
scanf ("%d", &result);

Expand Down
Loading