summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'main.c')
-rw-r--r--main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.c b/main.c
index 84ea5c1..4b39f66 100644
--- a/main.c
+++ b/main.c
@@ -9,7 +9,7 @@
int main() {
char* line;
while (1) {
- line = readline("$");
+ line = readline("$ ");
if (line[0] == '\0') continue;
if (strcmp(line, "exit") == 0) exit(0);
LexResult res = lex(line);