Sha256: 85710f4ad00b543e4301e9d1c787c166e559784be18b5e01b5d306ee84a06d7f

Contents?: true

Size: 330 Bytes

Versions: 2

Compression:

Stored size: 330 Bytes

Contents

<h1>Markdown</h1>

<p>Except with more magic added.</p>

<pre><code class="haskell">isPrefixOf              :: (Eq a) =&gt; [a] -&gt; [a] -&gt; Bool
isPrefixOf [] _         =  True
isPrefixOf _  []        =  False
isPrefixOf (x:xs) (y:ys)=  x == y &amp;&amp; isPrefixOf xs ys
</code></pre>

<p>And Haskell.  A lot of Haskell.</p>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
github-markup-1.0.3 test/markups/README.lhs.html
github-markup-0.7.5 test/markups/README.lhs.html