~e.g. instead of `someBuilder().foo().bar()` you c...
# getting-started
b
e.g. instead of
someBuilder().foo().bar()
you can do
someBuilder().with { foo(); bar(); }
Was thinking about
apply
ignore that