dummy.sch 533 B

1234567891011121314151617181920
  1. ; Dummy benchmark (for testing)
  2. ;
  3. ; $Id: dummy.sch,v 1.2 1999/07/12 18:03:37 lth Exp $
  4. (define (dummy-benchmark . args)
  5. (run-benchmark "dummy"
  6. 1
  7. (lambda ()
  8. (collect)
  9. (display "This is the dummy benchmark!")
  10. (newline)
  11. (display "My arguments are: ")
  12. (display args)
  13. (newline)
  14. args)
  15. (lambda (result)
  16. (equal? result args))))
  17. ; eof