Sophie

Sophie

distrib > Mageia > 1 > i586 > by-pkgid > c4319a002fbffbd136efb21d9adb836b > files > 2045

boost-examples-1.44.0-6.1.mga1.i586.rpm

(define what blah) ; blah not found

(define
  (foo x)
    (+ x 456))

(define
  (bar x)
    (+ x y)) ; y not found

(define (f1) (foo 123))
(define (f2) (foo z)) ; z not found

(define foo 123) ; redefinition

(define (f3) (foo 123 456)) ; incorrect arity

(define (f4) (bar 999)) ; bar should not be found

(define (main) ) ; no body