summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorA404M <ahmadmahmoudiprogrammer@gmail.com>2025-04-24 22:55:34 +0330
committerA404M <ahmadmahmoudiprogrammer@gmail.com>2025-04-24 22:55:34 +0330
commit0f50a82f0694bcf2902a772de63cc2b9a007c2f7 (patch)
tree780671646fe3ae15b00538b39cc4afc2c4d72e0f /Makefile
parent2ca446ab8604c71ba9c20da5ffc73328dbea0617 (diff)
make stuff much optimized
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index ae30991..76a2d31 100644
--- a/Makefile
+++ b/Makefile
@@ -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;" >> $@