I just read a little about Haskell and saw its interact method, which implements a general scheme for reading input from stdin, applying a function to strings, and writing the result back to stdout. So for example:
interact (map toUpper)
prints everything that comes to stdin converted to uppercase.
Is there an equivalent to this already in F # /. Net?
haskell f #
PCB
source share