summaryrefslogtreecommitdiff
path: root/files/practicum/ReturnEnBind.icl
blob: c6cf0896c57665f00d93b9c2285ed0ff613db12e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module ReturnEnBind

import StdEnv, Random

Start = 42

(bind1) infix 0 :: (St s a) (a -> (St s b)) -> St s b
(bind1) f1 f2 = ...

som2 :: (RandomSeed -> (Int,RandomSeed))
som2 ...

seqList1 :: [St s a] -> St s [a]
seqList1 ...