aboutsummaryrefslogtreecommitdiffhomepage
path: root/samples/fun
diff options
context:
space:
mode:
authorMarvin Borner2024-06-07 13:31:29 +0200
committerMarvin Borner2024-06-07 14:37:52 +0200
commitdba4ea41ce332f6945e61f580aee675a50a9b237 (patch)
treed715dfd711103adec2bb5bfed7e3520c9d7285a4 /samples/fun
parenteb21453b1491b602db9ae2076c6caea4f866d7d8 (diff)
Some more work on monads
Diffstat (limited to 'samples/fun')
-rw-r--r--samples/fun/IO.bruijn6
-rw-r--r--samples/fun/rng-state.bruijn27
2 files changed, 33 insertions, 0 deletions
diff --git a/samples/fun/IO.bruijn b/samples/fun/IO.bruijn
new file mode 100644
index 0000000..725e093
--- /dev/null
+++ b/samples/fun/IO.bruijn
@@ -0,0 +1,6 @@
+# read two lines using monadic I/O
+# printf "i love\nmonads\n" | bruijn IO.bruijn
+
+:import std/IO .
+
+main read-line >>= [read-line >>= [return [0 2 1]]]
diff --git a/samples/fun/rng-state.bruijn b/samples/fun/rng-state.bruijn
new file mode 100644
index 0000000..795bad1
--- /dev/null
+++ b/samples/fun/rng-state.bruijn
@@ -0,0 +1,27 @@
+# MIT License, Copyright (c) 2024 Marvin Borner
+# generates three pseudo-random integers using a state monad
+# printf <seed:number> | bruijn rng-state.bruijn
+
+:import std/Combinator .
+:import std/String .
+:import std/Number .
+:import std/Monad/State .
+
+max (+1000)
+
+rand [[[0 1 1]] rng]
+ rng (+1103515245) ⋅ 0 + (+12345) % max
+
+rand-bool map even? rand
+
+# accumulating bind (reversed)
+triple1 rand >>= (rand >>= (rand >>= [[[[[0 3 [0 3 [0 3 [[0]]]]]]]]]))
+
+:test ((triple1 (+50) [[1]]) =? (+745)) ([[1]])
+
+# normal bind
+triple2 rand >>= [rand >>= [rand >>= [[[0 4 [0 4 [0 4 [[0]]]]]]]]]
+
+:test ((triple2 (+50) [[1]]) =? (+595)) ([[1]])
+
+main string→number → triple2