[project @ 2003-07-22 16:18:06 by simonmar]
[ghc-hetmet.git] / ghc / tests / ghci / ghci003.stdout
1    ___         ___ _
2   / _ \ /\  /\/ __(_)
3  / /_\// /_/ / /  | |      GHC Interactive, version 5.03, for Haskell 98.
4 / /_\\/ __  / /___| |      http://www.haskell.org/ghc/
5 \____/\/ /_/\____/|_|      Type :? for help.
6
7 Loading package std ... linking ... done.
8 Prelude> -- check that 'it' works
9 Prelude> 1
10 1
11 Prelude> it
12 1
13 Prelude> print it
14 1
15 Prelude> return 42
16 Prelude> it
17 42
18 Prelude> print it
19 42
20 Prelude> Leaving GHCi.