Postfix style is easier to read (less parenthesis)...
# coroutines
o
Postfix style is easier to read (less parenthesis), and it is easier to type, because people usually write semantic part first. E.g.
val response = httpClient.get(”a.b.c/foo/bar.json”)
and then
response
is future, so we just continue with
.await()