Example #1
0
 public void FantasyBird_Dove()
 {
     FantasyBirds.Dove <string, string, string, string>(postfix => str => str + postfix)
         ("!")
         (x => x.ToUpper())
         ("birds")
     .ShouldBe("BIRDS!");
 }