<div dir="ltr">isLower is not in the Prelude (the automatically imported module built-in functions). Here's the list of all functions in Prelude:<div><a href="http://hackage.haskell.org/package/base/docs/Prelude.html">http://hackage.haskell.org/package/base/docs/Prelude.html</a><br>
</div><div><br></div><div>isLower is in another module. You can figure that out by searching for "isLower" on Hoogle:</div><div><a href="http://www.haskell.org/hoogle/">http://www.haskell.org/hoogle/</a><br></div>
<div><br></div><div>You can even find it by searching for it by type, which is useful if you don't remember the precise name. Try searching for "Char -> Bool".</div><div><br></div><div>In other words, you'll need to import isLower from somewhere before you can use it.</div>
<div><br></div></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Sun, Mar 2, 2014 at 10:45 AM, Roelof Wobben <span dir="ltr"><<a href="mailto:r.wobben@home.nl" target="_blank">r.wobben@home.nl</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hello,<br>
<br>
I try to selfstudy haskell by following the yet another haskell tutorial.<br>
<br>
Now I have the exercise where I have a string and have to convert it into  a list of Booleans based on lower cats letter using map.<br>
<br>
So i tried this<br>
<br>
x = "aBCde".islower:[]<br>
<br>
But I see this error : Not in Scope: 'isLower'.<br>
<br>
Where do I make my error.<br>
<br>
Do not give the answer otherwise I do not learn anything from it.<br>
<br>
Roelof<br>
<br>
<br>
---<br>
Dit e-mailbericht bevat geen virussen en malware omdat avast! Antivirus-bescherming actief is.<br>
<a href="http://www.avast.com" target="_blank">http://www.avast.com</a><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>
</blockquote></div><br></div>