3rd CCSC Northwest Conference Fall 2001 |
Basic Haskell: interaction with the Hugs interpreter | A calculator-style interpretive interface
We'll use the Hugs interpreter: it provides an interactive command-line on which user expressions can be evaluated and printed
> 2 +3 * 5
17
> reverse "Hello, world!"
"!dlrow ,olleH"
|
3rd CCSC Northwest Conference Fall 2001 |
Basic Haskell: interaction with the Hugs interpreter | A calculator-style interpretive interface
|
| The "$$" short-cut
We can use a short-cut to refer to the last expression evaluated; this allows for a convenient exploratory paradigm
> 2 + 3 * 5
17
> 2 ^ $$
131072
> $$ `mod` 3
2
> replicate 3 "hello"
["hello","hello","hello"]
> concat $$
"hellohellohello"
> length $$
15
|
3rd CCSC Northwest Conference Fall 2001 |
Basic Haskell: interaction with the Hugs interpreter
3rd CCSC Northwest Conference Fall 2001 |
Basic Haskell: interaction with the Hugs interpreter | A calculator-style interpretive interface
|
| The "$$" short-cut
|
| Interpreter response versus printed output
|
| Interpreter commands
Hugs also supports a number of "meta-level" commands at the prompt, including the following useful ones: - :t -- reports the type of an expression
- :s +s -- turns on resource statistics
- :n -- looks up names based on patterns
- :l -- loads program files to provide definitions
- :q -- quits the interpreter
|