You must log in or register to comment.
Neat FP style. Pretty verbose though. Someone should invent a terser syntax so you don’t need to write
do_two_things
everywhere. It’s a common operation so maybe it could even be a single character.You can replacereturn foo
with justfoo
.Not here, because it’s being used as a function argument.