function testAsy(x){
return new Promise(resolve => {setTimeout(() => {
resolve(x)
}, 3000)
}
)
}
async function testAwt(){
let result = await testAsy("hello world");
console.log(result);
console.log("sugar");
}
testAwt();
console.log("cug");