diff options
| author | Felix Perktold <Felix.Perktold@student.uibk.ac.at> | 2025-12-21 23:28:15 +0100 |
|---|---|---|
| committer | Felix Perktold <Felix.Perktold@student.uibk.ac.at> | 2025-12-21 23:28:15 +0100 |
| commit | 33b3d80c2dcd12dbf692984e0d736bfa9906a8b5 (patch) | |
| tree | 6808f532ce6af3674a27b2e1250c348fd8742f73 /main.c | |
| parent | 85e9fef4aa8855b6660ce8c8cc8d6f5fb0d507b6 (diff) | |
fix bug in apply, improve printing
Diffstat (limited to 'main.c')
| -rw-r--r-- | main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); } |
