1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
__ __ __ __ ____ ___ _________________________________________
|| || || || || || ||__ Hugs 98: Based on the Haskell 98 standard
||___|| ||__|| ||__|| __|| Copyright (c) 1994-2005
||---|| ___|| World Wide Web: http://haskell.org/hugs
|| || Report bugs to: hugs-bugs@haskell.org
|| || Version: March 2005 _________________________________________
Hugs mode: Restart with command line option +98 for Haskell 98 mode
Type :? for help
Tuple> Just (Tuple [Id "a",Id "b",Id "c"])
Tuple> Just (Tuple [Id "a",Id "b",Tuple [Id "c",Id "d"]])
Tuple> Just (Tuple [Tuple [Tuple [Id "a"]]])
Tuple> Just (Tuple [Id "a",Id "b",Tuple [Id "c",Id "d"],Tuple [Tuple [Id "e",Id "f"],Id "g"]])
Tuple> [Leaving Hugs]
|