# Task --- An asynchronous encapsulation ```text Task[TYPE; Error] ``` ## \`await ``` v : `await task // value is in v or error is thrown ``` # Matching ```text # `await task { .value { v ... }[v] .error { e ... }[e] } ``` ## .value ## .error