diff options
author | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-04-24 22:55:34 +0330 |
---|---|---|
committer | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-04-24 22:55:34 +0330 |
commit | 0f50a82f0694bcf2902a772de63cc2b9a007c2f7 (patch) | |
tree | 780671646fe3ae15b00538b39cc4afc2c4d72e0f /Makefile | |
parent | 2ca446ab8604c71ba9c20da5ffc73328dbea0617 (diff) |
make stuff much optimized
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -70,7 +70,7 @@ test-all: $(EXEC_FILE) test/big.felan test/big.felan: Makefile mkdir -p test echo "main :: () -> void {" > $@ - for((n = 0;n < 100000;n++)); do echo " print('1');" >> $@; done + for((n = 0;n < 1000000;n++)); do echo " print('1');" >> $@; done echo "};" >> $@ echo "print :: (value:u8) -> void {" >> $@ echo " putc value;" >> $@ |