Sophie

Sophie

distrib > Fedora > 17 > i386 > media > updates > by-pkgid > b03c44838559deaeff848c57e893606a > files > 1848

boost-examples-1.48.0-14.fc17.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