Skip to content

Commit 50d3895

Browse files
authored
Update README.md
default purity has changed
1 parent 23a6718 commit 50d3895

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@ console.log(TRUE(true)(false)) // true
5454

5555
| Property | Option | Description |
5656
| -------- | ---- | ---- |
57-
| `purity` | `Let` (default) | Allows definition of named terms which can be used in subsequent definitions. Does *not* support recursion. |
57+
| `purity` | `Let` | Allows definition of named terms which can be used in subsequent definitions. Does *not* support recursion. |
5858
| | `LetRec` | The same as `Let`, but additionally supporting direct recursion. |
59-
| | `PureLC` | Pure lambda calculus only. Terms are still named so that they can be accessed by tests, but named terms may not be used elsewhere. |
59+
| | `PureLC` (default) | Pure lambda calculus only. Terms are still named so that they can be accessed by tests, but named terms may not be used elsewhere. |
6060
| `numEncoding` | `None` | No number encoding. Use of number literals will cause an error. |
6161
| | `Church`<br>`Scott`<br>`BinaryScott` | Number literals will be automatically converted to corresponding LC terms, according to the encoding chosen. |
6262
| `verbosity` | `Calm`<br>`Concise`<br>`Loquacious`<br>`Verbose` | Controls the amount of information that will be reported during compilation. |

0 commit comments

Comments
 (0)