diff options
author | Marvin Borner | 2022-08-16 23:17:41 +0200 |
---|---|---|
committer | Marvin Borner | 2022-08-16 23:17:41 +0200 |
commit | e06bf5c88f10c14286ea9fd91f4bdba00cda6da9 (patch) | |
tree | db0e1528af3779227b64fcb8968656b4f28218d8 | |
parent | 8e7c341e559d9d7e709e9d8d65910ab7440b4222 (diff) |
Enhanced examples
-rw-r--r-- | README.md | 16 |
1 files changed, 12 insertions, 4 deletions
@@ -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) |