What task is best done in a functional programming style?

前端 未结 16 1830
-上瘾入骨i
-上瘾入骨i 2020-11-29 17:29

I\'ve just recently discovered the functional programming style and I\'m convinced that it will reduce development efforts, make code easier to read, make software more main

16条回答
  •  一个人的身影
    2020-11-29 18:06

    A good example cood be creating your own programming language using existing one, where you will have to use Monads.

    With F# it's much much simplier to write parsing logic than with C#.

    Take a look at this article: Functional .NET - LINQ or Language Integrated Monads?

提交回复
热议问题