What is your question?


On Mon, Nov 7, 2011 at 9:45 AM, yrazes <yra...@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

_______________________________________________
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe

Reply via email to