Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions GoF/Creational/Builder/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,16 @@ namespace DesignPatterns.GoF.Creational.Builder
{
class Program
{

static void printUsage()
{
Console.WriteLine("This is an implementation of the Builder pattern");
Console.WriteLine("Please sit down and relax");
}

static void Main(string[] args)
{
printUsage();
//director
var produder = new EpisodeProducer();
EpisodeBuilder builder;
Expand Down