Join Slack
Powered by
Also, I love how I can use `await()` in call chain...
# language-proposals
c
cbruegg
04/10/2017, 9:05 PM
Also, I love how I can use
await()
in call chains without wrapping the expression in paranthesis.
Copy code
x.foo() .await() .bar() .baz()
vs.
Copy code
(await x.foo()) .bar() .baz()
Open in Slack
Previous
Next