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