/usr/lib/help/time is in scheme9 2013.11.26-1.
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 15 16 17 18 19 | S9 LIB (time* expression) ==> object
(time form) ==> object
The TIME* procedures evaluates EXPRESSION, measuring the number
of allocations, reductions, etc with the STATS procedure. It also
measures the time spent reducing FORM. When finished, it prints
some interesting data and returns the normal form of FORM.
The FORM must be quoted or it will be reduced *before* running
TIME.
The TIME special form is like TIME*, but does not require its
argument to be quoted.
(time (begin (expt 2 10000) #t)) ==> #t
; 1.8990 seconds
; 350 reduction steps
; 8,327,846 conses allocated
; 8,329,127 total nodes allocated
; 73 garbage collections
|