Skip to content

Instantly share code, notes, and snippets.

@gsampath127
Created March 27, 2020 13:27
Show Gist options
  • Save gsampath127/e803324503fc389db51b209ceff66539 to your computer and use it in GitHub Desktop.
Save gsampath127/e803324503fc389db51b209ceff66539 to your computer and use it in GitHub Desktop.
async function PrepareLunch(){
let soup = PourSoup();
console.log("soup is ready");
let salad = PrepareSalad();
console.log("salad is ready");
let sEgg = PrepareScrambledEgg();
console.log("scrambled egg is ready");
let burger = FryBuns(2);
AddVeggies(burger);
DressBurger(burger);
console.log("burger is ready");
let lemon = PourLemon();
console.log("lemon juice is ready");
console.log("Lunch is ready!");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment