## Example: `csvreplace` If you build the package with the Cabal flag `-fbuildExamples` then the program `csvreplace` will be built. It allows you to replace placeholders in a template file according to the columns of a CSV file. E.g. given a file `template.txt` with content ~~~~ Name: FIRSTNAME SURNAME Born: BIRTH ~~~~ and `names.csv` with content ~~~~ "FIRSTNAME","SURNAME",BIRTH "Georg","Cantor",1845 "Haskell","Curry",1900 "Ada","Lovelace",1815 ~~~~ the call ~~~~ csvreplace template.txt