Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132937 views
License: OTHER
1
$ ghci binomialkoeffizient.hs
2
GHCi, version 7.4.2:
3
http://www.haskell.org/ghc/
4
:? for help
5
Loading package ghc-prim ... linking ... done.
6
Loading package integer-gmp ... linking ... done.
7
Loading package base ... linking ... done.
8
[1 of 1] Compiling Main
9
( binomialkoeffizient.hs, interpreted )
10
Ok, modules loaded: Main.
11
*Main> binom 5 2
12
10
13
14