/usr/share/scheme48-1.9/misc/sicp-check.scm is in scheme48 1.9-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 | ; Part of Scheme 48 1.9. See file COPYING for notices and license.
; Authors: Mike Sperber
(define-test-suite sicp-tests)
(define-test-case get/put sicp-tests
(check (begin (put 'foo 'prop 'a)
(get 'foo 'prop))
=> 'a))
|