blob: ff82dfc412d7c99ee4a3548ab60722e5e00f9f29 (
about) (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/csh
#
# run cmu haskell
if (`arch -k` == "sun4c") then
$CMUCLBIN -core $HASKELL/bin/sun4c-haskell.core
else
$CMUCLBIN -core $HASKELL/bin/sun4m-haskell.core
endif
|