From 29a62ecc21363ac6c7a99496ffcc97f94ab31373 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Sun, 16 Jun 2024 23:04:02 +0200 Subject: [PATCH] Change size of output figures --- Exercises/exercise-6/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Exercises/exercise-6/build.sh b/Exercises/exercise-6/build.sh index f11bad2..5b8ee44 100755 --- a/Exercises/exercise-6/build.sh +++ b/Exercises/exercise-6/build.sh @@ -1,7 +1,7 @@ for shape in "shape1" "shape2" "shape3" "iShape" "disc50" do pushd "${BASH_SOURCE%/*}" > /dev/null - ghc ./Shapes.hs -e "render 100 100 $shape" + ghc ./Shapes.hs -e "render 80 80 $shape" mv shape.txt "$shape.txt" popd > /dev/null done