Does anybody out there use Google Groups Beta to post to the `fa.haskell' group? I am directly subscribed to the email list, however I was trying some new things and it seemed like `fa.haskell' was vaguely related to the Haskell Caf� list. However, my post has not shown up on Haskell Caf�. Does anyone here know what's going on? I posted the following code to the `Haskell problem please help' thread:

> rotations:: [a] -> [[a]]
> rotations xs = rotate (xs ++ xs) len where
>   len = length xs
>   rotate _ 0 = []
>   rotate ys n = (take len ys):(rotate (tail ys) (n - 1))

Did anyone receive this?

-Arjun
_______________________________________________
Haskell-Cafe mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/haskell-cafe

Reply via email to