From a9167c30e317516518403bd61c1efb94a90d661a Mon Sep 17 00:00:00 2001 From: Petrutiu Mihai Date: Wed, 13 Jul 2016 14:41:39 +0300 Subject: [PATCH] Move fun examples down --- src/StrategyPattern/StrategyPatternExamples.cs | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/StrategyPattern/StrategyPatternExamples.cs b/src/StrategyPattern/StrategyPatternExamples.cs index c5f736d..f24add4 100644 --- a/src/StrategyPattern/StrategyPatternExamples.cs +++ b/src/StrategyPattern/StrategyPatternExamples.cs @@ -28,16 +28,15 @@ namespace StrategyPattern Console.WriteLine("Now the same example, but implemented with strategy pattern"); ShippingWithStrategyExample.Run(); - //This is just for fun (Challenged to loop without using conditions/loops) - LoopWithExceptionExample.Run(); - //This is just for fun (Challenged to loop without using conditions/loops) - MagnificLoopExample.Run(); - - ArrangeInterviewMotivationalExample.Run(InterviewPersons.Get()); //Show the switch moving problem ArrangeInterviewExample.Run(InterviewPersons.Get()); + + //This is just for fun (Challenged to loop without using conditions/loops) + LoopWithExceptionExample.Run(); + //This is just for fun (Challenged to loop without using conditions/loops) + MagnificLoopExample.Run(); } private static string GetDescription()