Author/Consultant MindViewLLC.com
Developer
Developer Advocate @ AWS
https://effectorientedprogramming.github.io/presos/dev2next_2024
(From a Rory Sutherland TED talk)
f(g(h()))
A sentence is composed of words.
f( g( h()))
def p(a: Int, b: Int): Int = a + b
def u(a: Int, b: Int): Int = a + b + scala.util.Random.nextInt()
def divide(a: Int, b: Int): Int = a / b
def c(a: Int, b: Int): Result = a + b + ControlledRandom.nextInt()