From edd707de0853ead63f788f6a118370744721b846 Mon Sep 17 00:00:00 2001 From: "Carsten Csiky (csicar)" Date: Tue, 5 May 2020 17:48:49 +0200 Subject: [PATCH] info on multiline --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 65255554..83c51a89 100644 --- a/README.md +++ b/README.md @@ -43,6 +43,16 @@ Now generate the test-files: Now `test/docs` should look similar to this: https://github.com/csicar/purescript-purepur/blob/master/example/test/docs +In addition to the normal PSCI-Syntax, purepur allows __multiline__ expressions and declarations: +``` +```purescript run +> f x = + x + 1 +> f 2 +3 +``` +``` + Building --------