myflip.hs 76 B

12345
  1. -- Slide 37
  2. myflip::(a -> b -> c) -> b -> a -> c
  3. myflip f a1 a2 = f a2 a1