Last active
August 29, 2015 14:11
-
-
Save halbkreativ/8106a7254b1ae7d744c3 to your computer and use it in GitHub Desktop.
C# Coffee Mug
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| private void OnDay_Load(object sender, EventArgs e) | |
| { | |
| Beverage coffee = new Beverage(Sweetener.Sugar, Beverage.Milk); | |
| coffee.Cream = true; | |
| Cup mug = new Cup(); | |
| mug.Fill(coffee); | |
| Me.Consume(mug); | |
| mug.Dispose(); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment