/usr/lib/s9fes/help/gensym is in scheme9 2010.11.13-2.
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 | S9fES (gensym string) ==> symbol
(gensym) ==> symbol
Return a fresh symbol that is guaranteed to be unique. When STRING
is passed to GENSYM, the returned symbol will have this string as
a prefix.
(gensym) ==> g56
(gensym "foo") ==> foo57
(let ((a (gensym))
(b (gensym))
(c (gensym)))
(list a b c)) ==> (g63 g62 g61)
|