Difference between revisions of "FP Solution"
Jump to navigation
Jump to search
Line 7: | Line 7: | ||
− | + | ---- | |
+ | Soluiton | ||
<div class="mw-collapsible mw-collapsed"> | <div class="mw-collapsible mw-collapsed"> | ||
Some text in the div here. | Some text in the div here. | ||
Line 20: | Line 21: | ||
<div style="clear:both;"></div> | <div style="clear:both;"></div> | ||
+ | ---- |
Revision as of 10:21, 23 September 2020
fact1 :: Int -> Int
fact1 0 = 1
fact1 n = n * fact1 (n-1)
Soluiton
Some text in the div here.
fact1 :: Int -> Int
fact1 0 = 1
fact1 n = n * fact1 (n-1)
Some more text in the div.