1
0
forked from GitHub/gf-core

add a type signature in GF.Interactive2 to make ghc-7.6.3 happy

This commit is contained in:
krasimir
2015-08-21 11:58:32 +00:00
parent 026d6a73ad
commit d1b46ece28

View File

@@ -166,6 +166,7 @@ execute1' s0 =
do execute . lines =<< lift (restricted (readFile w))
continue
where
execute :: [String] -> ShellM ()
execute [] = done
execute (line:lines) = whenM (execute1' line) (execute lines)