7 lines
83 B
Bash
Executable File
7 lines
83 B
Bash
Executable File
#!/bin/sh
|
|
|
|
for f in examples/*.*hs
|
|
do
|
|
ghc --make -Wall -Werror $f || exit
|
|
done
|