Say you had the following in Java: ```java int lines = sc.textFile("README.md").count(); ``` The same thing in Eta (with appropriate imports) is: ```haskell lines <- sc <.> textFile "README.md" >- count ``` Suggestions for alternatives to `<.>` and `>-`?