/usr/share/racket/pkgs/trace/tests.rkt is in racket-common 6.7-3.
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 11 12 13 14 | #lang racket/load
(current-error-port (current-output-port))
(require trace)
(define (f x) (+ x 1))
(f 5)
(module m racket
(define (g x) (+ x 2))
(g 4))
(require 'm)
|