Await Syntax Discussion Summary

Then there's the both prefix and postfix alternative:

"Any keyword that operates on an expression may be written before the expression, or after the expression if chained with a dot"


await future

would be equal to:

future.await

match foo {...}

would be equal to:

foo.match {...}
7 Likes