summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorFelix Perktold <Felix.Perktold@student.uibk.ac.at>2025-12-21 23:28:15 +0100
committerFelix Perktold <Felix.Perktold@student.uibk.ac.at>2025-12-21 23:28:15 +0100
commit33b3d80c2dcd12dbf692984e0d736bfa9906a8b5 (patch)
tree6808f532ce6af3674a27b2e1250c348fd8742f73 /main.c
parent85e9fef4aa8855b6660ce8c8cc8d6f5fb0d507b6 (diff)
fix bug in apply, improve printing
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 f297402..563d98a 100644
--- a/main.c
+++ b/main.c
@@ -23,7 +23,7 @@ int main(void) {
env_define(global_env, "<=", make_builtin(builtin_le));
// START REPL
char* line;
- while ((line = readline("λ > ")) != NULL) {
+ while ((line = readline("λ> ")) != NULL) {
if (*line) {
add_history(line);
}