Skip to content

Instantly share code, notes, and snippets.

@u8989332
Created April 1, 2018 05:10
Show Gist options
  • Save u8989332/a6a1160a72351f7178abd9bf26efcd7c to your computer and use it in GitHub Desktop.
Save u8989332/a6a1160a72351f7178abd9bf26efcd7c to your computer and use it in GitHub Desktop.
public class Program
{
static void Main(string[] args)
{
BreakfastShop shop = new BreakfastShop();
Hamburger hamburger = new Hamburger();
shop.cook(hamburger);
Console.Read();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment