Reminds me of the old backronym of the computer language LISP (LISt Processing): Lots of Insignificant Single Parentheses.

Sample LISP program:

Code:

(defun factorial (n &optional (acc 1))
(if (<= n 1)
acc
(factorial (- n 1) (* acc n))))



This is a relatively mild example.