We have added the code from the Robot Kata to code sandbox. Not only can you view the code and run it, but you can also fork the code to your own account and change the code to further explore the concepts....
series-functions
9 Articles
9
Here we implement the robot kata in a functional programming style...
In this exercise we are going to get some hands on practice using higher order functions. We are going to have a form simulating a ticket booking UI. The user can enter the...
The foundation of programming is to take smaller abstractions and make bigger abstractions out of it. In the previous articles in this series, we learned about using functions to create abstractions. Now let us look at how to join them up together using functional composition....
Functions that return the same output when given the same input are called pure functions. Then what are impure functions?...
You come across decorators when working in many frameworks. Here is how they work....