When you have to eat something to stay up probably you wanna eat some Italian food.
The best known Italian food in the world is the Pasta.
I'll try to explain how to cook the Pasta in the right way.
1$person = 2; 2$grams = 100; 3 4$pot = "cold water + little salt"; 5$potTemperature = 0; 6 7$boilingWater = false; 8$stoveTopOn = true; 9 10do {11 $boilingWater = $potTemperature == 100;12 sleep(1);13 $potTemperature++;14} while (!$boilingWater);15 16$pasta = $person * $grams;17$cookingTime = 10 * 60; // check on the pasta package - usually are 8/10 mins;18 19$pot = "boiled water" + $pasta;20 21sleep($cookingTime);22 23$stoveTopOn = false;24 25$dish = $pot - "bolied water" + "drizzle of extra virgin olive oil";
After the cooking time you can eat your pasta, I suggest to add a drizzle of extra virgin olive oil.
I'll publish more cooking recipes soon.