X-Git-Url: http://lambda.jimpryor.net/git/gitweb.cgi?p=lambda.git;a=blobdiff_plain;f=arithmetic.mdwn;h=cac56f206cb497b9acb87272a4e363a0a9c841bd;hp=f7406ccb66f7a1da09841d65d2a8274fd0e1c61a;hb=e24b3eb555211cb2d9af17355b305313ba0eaf7a;hpb=1b71f17d39016a953ec7f2bac55f159e716521b4 diff --git a/arithmetic.mdwn b/arithmetic.mdwn index f7406ccb..cac56f20 100644 --- a/arithmetic.mdwn +++ b/arithmetic.mdwn @@ -198,7 +198,7 @@ Here are a bunch of pre-tested operations for the untyped lambda calculus. In so )) in - ; Curry's fixed point combinator + ; Rosenbloom's fixed point combinator let Y = \f. (\h. f (h h)) (\h. f (h h)) in ; Turing's fixed point combinator let Z = (\u f. f (u u f)) (\u f. f (u u f)) in @@ -239,3 +239,23 @@ Here are a bunch of pre-tested operations for the untyped lambda calculus. In so ; and consume is (\p. p get_2nd p) in ; or --> + +