From e24b3eb555211cb2d9af17355b305313ba0eaf7a Mon Sep 17 00:00:00 2001 From: Jim Pryor Date: Thu, 30 Sep 2010 14:28:25 -0400 Subject: [PATCH] tweaked arithmetic Signed-off-by: Jim Pryor --- arithmetic.mdwn | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) 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 --> + + -- 2.11.0