fix: reattach the newline that Haskell strips on input
This commit is contained in:
parent
f827c37baa
commit
d142ad2c03
1 changed files with 3 additions and 1 deletions
|
@ -34,7 +34,9 @@ rules
|
||||||
putStr(d)
|
putStr(d)
|
||||||
return s
|
return s
|
||||||
|
|
||||||
emit s = getLine
|
emit s = do
|
||||||
|
l <- getLine
|
||||||
|
return (l ++ "\n")
|
||||||
|
|
||||||
main = do
|
main = do
|
||||||
[<Preactions>()]return [val]]
|
[<Preactions>()]return [val]]
|
||||||
|
|
Loading…
Add table
Reference in a new issue