Difference between revisions of "FP Laboratory 1"
Jump to navigation
Jump to search
(→Topic) |
|||
Line 19: | Line 19: | ||
2.5 | 2.5 | ||
ghci> import Prelude | ghci> import Prelude | ||
+ | |||
+ | doubleSmallNumber x = if x > 100 | ||
+ | then x | ||
+ | else x*2 | ||
+ | |||
</syntaxhighlight > | </syntaxhighlight > | ||
</translate> | </translate> |
Revision as of 11:58, 12 August 2019
Topic
ghci> :l baby
[1 of 1] Compiling Main ( baby.hs, interpreted )
Ok, modules loaded: Main.
ghci> doubleMe 9
18
ghci> doubleMe 8.3
16.6
ghci> 2 + 15
17
ghci> 49 * 100
4900
ghci> 1892 - 1472
420
ghci> 5 / 2
2.5
ghci> import Prelude
doubleSmallNumber x = if x > 100
then x
else x*2