
Dear GHC, Do you provide in your interactive system a denotation for the last result? (`:?' command does not show it). For example, Prelude> 1 1 Prelude> % + 1 2 ... ----------------- Serge Mechveliani mechvel@botik.ru

Dear GHC,
Do you provide in your interactive system a denotation for the last result? (`:?' command does not show it). For example,
Prelude> 1 1 Prelude> % + 1 2 ...
It is called "it" Prelude> 1 1 Prelude> it + 1 2 Prelude> it + 1 3 This follows from other environments, for example I have seen this in ml interpreters before. Cheers, Bernie.

Do you provide in your interactive system a denotation for the last result? (`:?' command does not show it). For example,
It is called "it"
It is called $$ in Hugs and you can use :set -r flag to change it (you can even use ':set -rit' if you want. It might be best if ghci and Hugs were compatible in this regard. -- Alastair Reid reid@cs.utah.edu http://www.cs.utah.edu/~reid/
participants (3)
-
Alastair Reid
-
Bernard James POPE
-
Serge D. Mechveliani