Basics 22 - Inline Functions
https://youtu.be/pHXPFHSFI00
A Simple Case... Not Really
Let's take a simple example:
let add x y = x + y
let result = add 1 2
So far so good. We created a function named add. Since no type declarations are used, we assume that x, y and return va...
thinkfunctionally.hashnode.dev4 min read
riccardo10
I am a software developer
I struggled to understand inline functions and duck typing last week until I read your article today. Great stuff 👍