<div dir="ltr"><div>There is nothing wrong with using real functions from a library, but you never said what library it was or even enough info to guess.  Was it diagrams?  Gloss?  FOV?  Or something you wrote?<br><br>If the library doesn't matter, as it didn't in this case, you can just specify the types like so<br>
<br>data Color = Color<br><br>translate :: Int -> Int -> ()<br>translate = undefined<br><br>color :: Color -> ()<br>color = undefined<br><br>red :: Color<br>red = undefined<br><br>so that at least your snippet compiles for others.<br>
<br></div></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Tue, Apr 22, 2014 at 2:37 PM, John M. Dlugosz <span dir="ltr"><<a href="mailto:ngnr63q02@sneakemail.com" target="_blank">ngnr63q02@sneakemail.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="">On 4/22/2014 8:58 AM, Kim-Ee Yeoh wrote:<br>
</div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="">
<br>
On Tue, Apr 22, 2014 at 3:00 PM, John M. Dlugosz <<a href="mailto:ngnr63q02@sneakemail.com" target="_blank">ngnr63q02@sneakemail.com</a><br></div><div class="">
<mailto:<a href="mailto:ngnr63q02@sneakemail.com" target="_blank">ngnr63q02@sneakemail.<u></u>com</a>>> wrote:<br>
<br>
    chain1 = [ translate x y $ color red $ Circle r | (x,y,r) <- pappus 100 [1..10] ]<br>
<br>
<br>
What is translate? What is color? What is Circle? What is pappus?<br>
<br>
None of this is plain haskell.<br>
<br>
John, if you make your readers guess at undefined names, they'll go away and hangout<br>
somewhere friendlier!<br>
<br>
-- Kim-Ee<br>
<br>
<br>
</div></blockquote>
<br>
<br>
Sorry — I thought showing a form that did work would be enough.  The important part is that I have a input = map foo [0..10] and a bar (t1,t2,t3) = baz where baz returns a tuple, and the result of bar is the guts of another map.<br>

<br>
I didn't realize that using real words from a library instead of foo and bar was considered unfriendly!<div class="HOEnZb"><div class="h5"><br>
<br>
<br>
______________________________<u></u>_________________<br>
Beginners mailing list<br>
<a href="mailto:Beginners@haskell.org" target="_blank">Beginners@haskell.org</a><br>
<a href="http://www.haskell.org/mailman/listinfo/beginners" target="_blank">http://www.haskell.org/<u></u>mailman/listinfo/beginners</a><br>
</div></div></blockquote></div><br></div>