[project @ 2001-08-21 14:45:13 by simonmar]
[ghc-hetmet.git] / ghc / tests / ghci / ghci005.stdout
index aaef7c5..8c3aed4 100644 (file)
@@ -5,8 +5,6 @@
 \____/\/ /_/\____/|_|      Type :? for help.
 
 Loading package std ... linking ... done.
-*** WARNING: . is writable by someone else, IGNORING!
-*** WARNING: ./.ghci is writable by someone else, IGNORING!
 Prelude> :unset +s +t
 Prelude> -- tests for :def, :undef
 Prelude> let void m = m >> return ""
@@ -18,10 +16,10 @@ Prelude> let echo s = return (":! echo " ++ map Char.toUpper s)
 hello, world!
 Prelude> :echo hello, world!
 Prelude> :def echo echo
+hello, world!
 command `echo' is already defined
 Prelude> :undef echo
 Prelude> :def echo echo
 Prelude> :echo hello, world!
 HELLO, WORLD!
 Prelude> Leaving GHCi.
-hello, world!