Sorry, but I got this error while I compile it.
*
*
*[yulys@yulys haskell]$ ghc -o quick quick.hs*
*[1 of 1] Compiling Main ( quick.hs, quick.o )*
*
*
*quick.hs:7:11: parse error on input `<-'*
*[yulys@yulys haskell]$ *
On Mon, Nov 7, 2011 at 4:23 PM, KC <kc...@gm...> wrote:
> What is your question?
>
>
>
> On Mon, Nov 7, 2011 at 9:45 AM, yrazes <yr...@gm...> 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
> > Has...@ha...
> > http://www.haskell.org/mailman/listinfo/haskell-cafe
> >
> >
>
>
>
> --
> --
> Regards,
> KC
>
|