REPL
void
is a convenient function, which turnsIO a
toIO ()
. Used here because we don't care about the output of the repl, and in fact that output is never reached, because the repl runs a loop indefinitely.
Analysis¶
This module is responsible for producing the actual runnable program (of type IO ()
) that wraps up the whole system.
main
¶
```haskell
main :: IO () main = void $ runReplWithBoard $ displayLine "Welcome!\n\n" >> forever do
line <- requestLine "> "
let instruction = parse line
board <- get
result <-
case instruction of
Left (ParseError err) -> pure err
Left (ReplError err) -> pure err
Right instr -> evaluate instr
`catchError` ( \case
ReplError txt -> pure txt
err -> throwError err
)
displayLine result
```
```haskell
main :: IO () main = runReplWithBoard $ displayLine "Welcome!\n\n" >> loop where
loop = do
line <- requestLine "> "
let instruction = parse line
board <- get
result <-
case instruction of
Left (ParseError err) -> pure err
Left (ReplError err) -> pure err
Right instr -> evaluate instr
`catchError` ( \case
ReplError txt -> pure txt
err -> throwError err
)
displayLine result
loop
```
```haskell
main :: IO () main = do runReplWithBoard $ displayLine "Welcome!\n\n" >> forever do
line <- requestLine "> "
let instruction = parse line
board <- get
result <-
case instruction of
Left (ParseError err) -> pure err
Left (ReplError err) -> pure err
Right instr -> evaluate instr
`catchError` ( \case
ReplError txt -> pure txt
err -> throwError err
)
displayLine result
pure ()
```
Last update:
February 9, 2023
Created: January 8, 2023
Created: January 8, 2023