Example #1
0
 public void FantasyBird_Eagle()
 {
     FantasyBirds.Eagle <string, string, string, string, string>(prefix => str => prefix + str)
         ("-")
         (str => postfix => str + postfix)
         ("birds")
         ("!")
     .ShouldBe("-birds!");
 }