summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
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;" >> $@