diff options
| author | Felix Perktold <Felix.Perktold@student.uibk.ac.at> | 2025-12-22 13:06:02 +0100 |
|---|---|---|
| committer | Felix Perktold <Felix.Perktold@student.uibk.ac.at> | 2025-12-22 13:06:02 +0100 |
| commit | 91d683a1b819a5b720b9eb11f8409dff9c7883e1 (patch) | |
| tree | ca1bd5716b5185c8e8484a82b755f84c11baf5a7 /main.c | |
| parent | f75def0e79ba2d4fdd5e743e56a0a9d96e3a433b (diff) | |
tweaks
Diffstat (limited to 'main.c')
| -rw-r--r-- | main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -37,7 +37,7 @@ int main(int argc, char **argv) { env_define(global_env, "-", make_builtin(builtin_sub)); env_define(global_env, "*", make_builtin(builtin_mul)); env_define(global_env, "/", make_builtin(builtin_div)); - env_define(global_env, "<=", make_builtin(builtin_le)); + env_define(global_env, "<", make_builtin(builtin_lt)); // evaluate files for(int i = 1; i < argc; i++) { |
