Tag Archives: F#
Mapping in F#.
This is a very simple example that illustrates the the ‘map’ concept used in functional programming. This example is written in F#. Mapping is a popular programming concept that lets you apply a function to each element of a list or collection. The return value of a map operation is another list. Because the same [...]
Writing your own arithmetic language in F#.