Beispiele zur Syntax

Beispiele zur Abstraktion 1. Alternative

(define anton
   (lambda (x y)
      x))
;
(define berta anton)
;
(define charly 
   (anton a b))

Beispiele zur Abstraktion 2. Alternative

(lambda (x)
   (mult x ten))

Beispiele zur Referenz

anton
;
berta

Beispiele zur Synthese

(b t f)
;
(anton a b)
;
((lambda(x) (add x three)) two)



Georg Loczewski 2003-08-07