/usr/share/maxima/5.41.0/src/sloop.lisp is in maxima-src 5.41.0-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 | (in-package :cl-sloop)
(defmacro sloop (&rest body)
(warn (intl:gettext "Using deprecated macro 'sloop'. Use 'loop' instead."))
`(loop ,@body))
|