Sophie

Sophie

distrib > Fedora > 18 > i386 > by-pkgid > 2f550ead4f191b130f5eca658403e991 > files > 1892

boost-examples-1.50.0-7.fc18.noarch.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