Blog Post
Functional Service in Scala
Functional programming helps programmers to reason about their codebase using referential transparency and side-effect
control principles. Let’s push the limit and make pure-functional REST service using IO Monad from Cats-Effect project. First, we will do that using Akka-HTTP library and standard Scala Future as effect type. Afterwards, we will switch to abstract effect F to have a choice, when it comes to run our embedded program.