FunctionalProgrammingSimplified
FunctionalProgrammingSimplified copied to clipboard
`wrap` usage is wrong on page 278 of the PDF
This example is wrong on page 278 of the PDF:
wrap("<pre>","val x = 1", "</pre>")
It should be:
wrap("<pre>")("val x = 1")("</pre>")