Idris2/tests/idris2/interpreter003/expected
Giuseppe Lomurno 5e9837828a Implementations and errors
- Added initial implementations for terms and values
- Error messages converted to pretty printer
- Colorization for error messages
- Color and console width option both as command line and repl command
2020-08-18 19:25:36 +01:00

15 lines
322 B
Plaintext

Main> Error: Undefined name fromMaybe.
(interactive):1:1--1:25
|
1 | fromMaybe "test" Nothing
| ^^^^^^^^^^^^^^^^^^^^^^^^
Main> Imported module Data.Maybe
Main> "test"
Main> Imported module Data.Strings
Main> "hello"
Main> True
Main> Error loading module DoesNotExists: DoesNotExists not found
Main> Bye for now!