6 lines
102 B
Text
6 lines
102 B
Text
|
<?hh // strict
|
||
|
|
||
|
async function foo(): Awaitable<string> {
|
||
|
return await (() ==> 'Hello, world')();
|
||
|
}
|