Difference between revisions of "FP Laboratory 1"

From Marek Běhálek Wiki
Jump to navigation Jump to search
m (Beh01 moved page FP lab 1 to FP Laboratory 1)
Line 1: Line 1:
 
<translate>
 
<translate>
==Laboratory 1 ==
+
== Topic ==
 
 
  
 +
==
 +
<pre name="code" class="haskell: ghci">
 +
ghci> 2 + 15 
 +
17 
 +
ghci> 49 * 100 
 +
4900 
 +
ghci> 1892 - 1472 
 +
420 
 +
ghci> 5 / 2 
 +
2.5 
 +
ghci>
 +
</pre>
 
</translate>
 
</translate>

Revision as of 09:56, 12 August 2019

Topic

==

ghci> 2 + 15  
17  
ghci> 49 * 100  
4900  
ghci> 1892 - 1472  
420  
ghci> 5 / 2  
2.5  
ghci>