Wordsmith Talk |
About Us | What's New | Search | Site Map | Contact Us | |||
Register Log In Wordsmith Talk Forums General Topics Miscellany Hyphen run amok
Previous Thread
Next Thread
Print Thread
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.
Moderated by Jackie
Link Copied to Clipboard
Forum Rules · Mark All Read Contact Us · Forum Help · Wordsmith Talk