The joys of cooking

February 23, 2008 – 8:26 pm

Over the past few months I have started to learn how to cook and I must say, so far I have enjoyed it quite a bit. In the hopes of celebrating a new found semi-passionate activity, I decided to write a little about how I cook.

Following is my recipe to cooking a great pasta dish:

class Cooking {
public static void main(String args[]){
// First let’s start boiling the pasta for 15 minutes
Pasta myPasta = new Pasta();
myPasta.Add(”Butter”,Salt”); // Add a little bit of butter and salt before boiling
myPasta.Boil(15,”Medium”); // Boil the pasta for 15 minutes on medium heat
// Let’s start preparing the vegetables
Vegetables myVegs = new Vegetables();
myVegs.Add(”Brocolli”,2,”Chopped”);
myVegs.Add(”Mushrooms”,4,”Sliced”);
myVegs.Add(”Green Peppers”,1,”Chopped”);
myVegs.Add(”Red Peppers”,1,”Chopped”);
myVegs.Add(”Jamaican Chilli”,1,”Chopped”);
myVegs.Add(”Garlic”,2,”Diced”);
myVegs.Add(”Onions”,1,”Chopped”);
myVegs.Saute(15,”Medium”); // Saute the everything on medium heat for about 15 minutes.
myPasta.CoolDown(5); // Let the pasta cool down for 5 minutes.
myPasta.AddSauce().Flavour(”Herb & Spice”); // Add pasta sauce, I added the Herb & Spice sauce from President’s Choice
myPasta.Stir(2); // Give it a good stir
myPasta.Mix(myVegs); // Add the vegetables to the pasta
myPasta.Stir(2); // Give the mixture a good stir to mix it all up
myPasta.Add(”Ground Pepper”); // Add ground pepper if you like
myPasta.Serve();
}

Enjoy!

Post a Comment