Difference between revisions of "Functional programming"

From Marek Běhálek Wiki
Jump to navigation Jump to search
(Created page with "== Functional Programming == fdgfg")
 
Line 1: Line 1:
 
== Functional Programming ==
 
== Functional Programming ==
fdgfg
+
As the expressions above imply, Haskell has a notion of integers
 +
and floating point numbers. Integers can be arbitrarily large.
 +
Here, ~(^)~ provides integer exponentiation.
 +
 
 +
#+BEGIN_SRC screen
 +
ghci> 313 ^ 15
 +
27112218957718876716220410905036741257
 +
#+END_SRC

Revision as of 08:19, 7 August 2019

Functional Programming

As the expressions above imply, Haskell has a notion of integers and floating point numbers. Integers can be arbitrarily large. Here, ~(^)~ provides integer exponentiation.

  1. +BEGIN_SRC screen

ghci> 313 ^ 15 27112218957718876716220410905036741257

  1. +END_SRC