8 lines
206 B
Bash
8 lines
206 B
Bash
|
for shape in "shape1" "shape2" "shape3" "iShape" "disc50"
|
||
|
do
|
||
|
pushd "${BASH_SOURCE%/*}" > /dev/null
|
||
|
ghc ./Shapes.hs -e "render 100 100 $shape"
|
||
|
mv shape.txt "$shape.txt"
|
||
|
popd > /dev/null
|
||
|
done
|