@dallaylaen/ski-interpreter 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +7 -7
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -31,12 +31,12 @@ and can be used in Node.js or in the browser.
31
31
 
32
32
  ## Starting combinators:
33
33
 
34
- * `I x ↦ x` (identity);
35
- * `K x y ↦ x` (constant);
36
- * `S x y z ↦ x z (y z)` (fusion);
37
- * `B x y z ↦ x (y z)` (composition);
38
- * `C x y z ↦ y x z` (swapping);
39
- * `W x y z ↦ x (y z)` (duplication);
34
+ * <code>I x &mapsto; x</code> _// identity_;
35
+ * <code>K x y &mapsto; x</code> _//constant_;
36
+ * <code>S x y z &mapsto; x z (y z)</code> _// fusion_;
37
+ * <code>B x y z &mapsto; x (y z)</code> _// composition_;
38
+ * <code>C x y z &mapsto; x z y</code> _// swapping_;
39
+ * <code>W x y &mapsto; x y y</code> _//duplication_;
40
40
 
41
41
  # Execution strategy
42
42
 
@@ -49,7 +49,7 @@ all free variables are bound.
49
49
  # Installation
50
50
 
51
51
  ```bash
52
- npm install ski-interpreter
52
+ npm install @dallaylaen/ski-interpreter
53
53
  ```
54
54
 
55
55
  # Usage
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dallaylaen/ski-interpreter",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Simple Kombinator Interpreter - a combinatory logic & lambda calculus parser and interpreter. Supports SKI, BCKW, Church numerals, and setting up assertions ('quests') involving all of the above.",
5
5
  "keywords": [
6
6
  "combinatory logic",