fkifejezések
fkifejezések, or F-expressions, denote a historical notation used to express Lisp programs in the early days of the language. In F-expression form, function application is written as a sequence of the function name followed by its arguments, without the explicit parentheses that later became standard in Lisp. For example, the arithmetic expression plus 2 3 would be an F-expression, corresponding to the S-expression (+ 2 3).
F-expressions were designed to be closer to conventional mathematical notation and thus easier for humans to
Because of these practical concerns, Lisp adopted S-expressions, a parenthesized prefix notation that unambiguously encodes tree
Today, F-expressions are primarily of historical interest. They illustrate an early design choice in Lisp's development
See also: Lisp, S-expression, John McCarthy, Lisp 1.5 Manual.