Content deleted Content added
Gricharduk (talk | contribs) →References: Adding JSTOR link to Jockusch 1989 |
m Task 70: Update syntaxhighlight tags - remove use of deprecated <source> tags |
||
Line 48:
<code>Q</code> can be changed to any two-argument function.
<
(setq Q '(lambda (x y) x))
(setq s11 '(lambda (f x) (list 'lambda '(y) (list f x 'y))))
(setq n (list 'lambda '(x y) (list Q (list s11 'x 'x) 'y)))
(setq p (eval (list s11 n n)))
</syntaxhighlight>
The results of the following expressions should be the same. <math>\varphi</math> <code>p(nil)</code>
<
(eval (list p nil))
</syntaxhighlight>
<code>Q(p, nil)</code>
<
(eval (list Q p nil))
</syntaxhighlight>
=== Application to elimination of recursion ===
|