Sorry, but I got this error while I compile it.
What is your question?
> _______________________________________________
On Mon, Nov 7, 2011 at 9:45 AM, yrazes <yrazes@gmail.com> wrote:
> module Main (main) where
> quicksort [] = []
> quicksort (s:xs) = quicksort [x|x <- xs,x < s] ++ [s] ++ quicksort [x|x <-
> xs,x >= s]
> main = putStr "Ingrese la lista\n"
> [xs] <- getLine
> Haskell-Cafe mailing list
> Haskell-Cafe@haskell.org
> http://www.haskell.org/mailman/listinfo/haskell-cafe
>
>
--
--
Regards,
KC