<div class="gmail_quote">On Thu, Sep 22, 2011 at 4:20 PM, Amy de Buitléir <span dir="ltr">&lt;<a href="mailto:amy@nualeargais.ie">amy@nualeargais.ie</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
csmagic &lt;csmagic &lt;at&gt; <a href="http://gmail.com" target="_blank">gmail.com</a>&gt; writes:<br>
<br>
&gt;<br>
&gt; Thanks Joey, AmyNow I want to go &#39;backwards&#39;.For example I have<br>
&gt; Language.Haskell.Exts.SyntaxI want to dig into it.  Where/How do I start?<br>
<br>
Using either Hayoo or Hoogle, search for &quot;Language.Haskell.Exts.Syntax&quot;. Click on<br>
the results to find out more about this module (what package it&#39;s in, what<br>
methods it contains, etc.) Does that answer your question?<br>
<div><div></div><br></div></blockquote></div><br>Ok Thanks Amy.<br>Language.C was not working yesterday and is working now today.<br>
Maybe I mistyped something<br><br>Now I find that I am directed to do at page <a href="http://trac.sivity.net/language_c/wiki/GettingStarted">http://trac.sivity.net/language_c/wiki/GettingStarted</a><br><br><pre class="wiki">
module Main where<br>import Language.C<br>import Language.C.System.GCC   -- preprocessor used<br>main = parseMyFile &quot;test.c&quot; &gt;&gt;= printMyAST<br></pre>Whats with the double import?<br>Does not the contents of Language.C get imported when that is imported?<br>
<br>[Note this is not so much a question specific to Language.C as to the general nature of module namespace structuring in Haskell]<br>