this repo has no description
at trunk 7 lines 162 B view raw
1(f >> (x -> x) >> g) 7 2. f = | 7 -> "cat" 3 | 4 -> "dog" 4 | _ -> "shark" 5. g = | "cat" -> "kitten" 6 | "dog" -> "puppy" 7 | a -> "baby " ++ a