aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMarvin Borner2022-08-16 23:17:41 +0200
committerMarvin Borner2022-08-16 23:17:41 +0200
commite06bf5c88f10c14286ea9fd91f4bdba00cda6da9 (patch)
treedb0e1528af3779227b64fcb8968656b4f28218d8
parent8e7c341e559d9d7e709e9d8d65910ab7440b4222 (diff)
Enhanced examples
-rw-r--r--README.md16
1 files changed, 12 insertions, 4 deletions
diff --git a/README.md b/README.md
index 6f6eb2f..fc4e39a 100644
--- a/README.md
+++ b/README.md
@@ -134,6 +134,8 @@ understanding the logic of lambda calculus:
# we can use the function in all functions below its definition
get-one2 get-one
+ # tests are similar to assertions in other languages
+ # in this example they're used to show the reduced expressions
:test (get-one2) (+1)
# indenting acts similarly to Haskell's where statement
@@ -190,6 +192,7 @@ Some other great functions:
:import std/Number .
:import std/Option .
:import std/Pair .
+ :import std/List .
# pairs with some values
love pair me you
@@ -199,10 +202,6 @@ Some other great functions:
:test (fst love) ([[[1]]])
:test (snd love) ([[[2]]])
- # options
- :test (map inc (some (+1))) (some (+2))
- :test (apply (some (+1)) [some (inc 0)]) (some (+2))
-
# numerical operations
five --(((+8) + (-4)) - (-2))
@@ -212,6 +211,15 @@ Some other great functions:
:test ((uncurry mul (pair (+3) (+2))) =? (+6)) (true)
+ # lazy evaluation using infinite lists and indexing
+ pow2 [(iterate (mul (+2)) (+1)) !! 0]
+
+ :test (pow2 (+5)) (+32)
+
+ # options
+ :test (map inc (some (+1))) (some (+2))
+ :test (apply (some (+1)) [some (inc 0)]) (some (+2))
+
# boolean
main not ((false && true) || true)