We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e72d52 commit a81d753Copy full SHA for a81d753
bin/Main.purs
@@ -181,7 +181,9 @@ main = launchAff_ do
181
Console.error $ printParseError err
182
liftEffect $ Process.exit 1
183
Right str ->
184
- Console.log str
+ makeAff \k -> do
185
+ _ <- Stream.writeString Process.stdout UTF8 str (k (Right unit))
186
+ pure mempty
187
188
readOperatorTable :: FilePath -> Aff (Array String)
189
readOperatorTable path
0 commit comments