diff --git a/CSharp/Blackbaud.Interview.Cards/Program.cs b/CSharp/Blackbaud.Interview.Cards/Program.cs index 6d4dc52..05555e2 100644 --- a/CSharp/Blackbaud.Interview.Cards/Program.cs +++ b/CSharp/Blackbaud.Interview.Cards/Program.cs @@ -11,9 +11,11 @@ static void Main() // Create a new deck var deck = Deck.NewDeck(); + // TODO: shuffle the deck Console.WriteLine("Shuffling..."); + deck = deck.Shuffle(3); // Deal all the cards while (!deck.Empty)