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