Difference between revisions of "FP Solution"

From Marek Běhálek Wiki
Jump to navigation Jump to search
(Replaced content with "<syntaxhighlight lang="Haskell"> fact1 :: Int -> Int fact1 0 = 1 fact1 n = n * fact1 (n-1) </syntaxhighlight>")
Tag: Replaced
Line 5: Line 5:
  
 
</syntaxhighlight>
 
</syntaxhighlight>
 +
 +
<big>''' Collapsible table in collapsed div '''</big>
 +
----
 +
<div class="mw-collapsible mw-collapsed">
 +
Some text in the div here.
 +
{| class="wikitable sortable mw-collapsible"
 +
! Hello
 +
! World
 +
|-
 +
| Content
 +
| Goes
 +
|-
 +
| In
 +
| Here
 +
|}
 +
Some more text in the div.
 +
</div>
 +
 +
<div style="clear:both;"></div>

Revision as of 09:55, 23 September 2020

fact1 :: Int -> Int
fact1 0 = 1
fact1 n = n * fact1 (n-1)

Collapsible table in collapsed div


Some text in the div here.

Hello World
Content Goes
In Here

Some more text in the div.