This file is indexed.

/usr/share/zenlisp/m_fac.l is in zenlisp 2013.11.22-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
; M-Expression Example Program
; By Nils M Holm, 2004-2007
; See the file LICENSE of the zenlisp distribution
; for conditions of use.

; Compute the factorial of an integer.

(require '~mexprc)

(mexpr-eval '(

  m_fac[x] := [x=0 -> 1 : m_fac[x-1] * x]

))