
(* 2 (+ 3 4))Incomputer programming, anS-expression (orsymbolic expression, abbreviated assexpr orsexp) is an expression in a like-named notation for nestedlist (tree-structured) data. S-expressions were invented for, and popularized by, the programming languageLisp, which uses them forsource code as well as data.
In the usual parenthesizedsyntax of Lisp, an S-expression is classically defined[1] as
This definition reflects LISP's representation of a list as a series of "cells", each one anordered pair. In plain lists,y points to the next cell (if any), thus forming alist. Therecursive clause of the definition means that both this representation and the S-expression notation can represent anybinary tree. However, the representation can in principle allowcircular references, in which case the structure is not a tree at all, but acyclic graph, and cannot be represented in classical S-expression notationunless a convention for cross-reference is provided, analogous to SQLforeign keys,SGML/XML IDREFs, etc. Modern Lisp dialects such asCommon Lisp[2] andScheme[3] provide such syntax viadatum labels, with which objects can be marked, which can then recur elsewhere, indicating shared rather than duplicated structure, enabling thereader orprinter to detect and thus trigger evaluation or display of cycles without infinitely recursing
#n=(xy . #n#)The definition of an atom varies per context; in the original definition byJohn McCarthy,[1] it was assumed that there existed "an infinite set of distinguishableatomic symbols" represented as "strings of capitalLatin letters and digits with single embedded blanks" (a subset ofcharacter string and numericliterals).
Most modern sexpr notations allow more general quoted strings (for example including punctuation or fullUnicode), and use an abbreviated notation to represent lists with more than 2 members, so that
(xyz)stands for
(x . (y . (z . NIL)))NIL is the special end-of-listobject (alternatively written(), which is the only representation inScheme[4]).
In the Lisp family of programming languages, S-expressions are used to represent both source code and data. Other uses of S-expressions are in Lisp-derived languages such asDSSSL, and asmark-up incommunication protocols likeIMAP andJohn McCarthy'sCBCL. It is also used as text representation ofWebAssembly. The details of the syntax and supporteddata types vary in the different languages, but the most common feature among these languages is the use of S-expressions and prefix notation.
There are many variants of the S-expression format, supporting a variety of different syntaxes for different datatypes. The most widely supported are:
(1 () (2 . 3) (4))with-hyphen?@!$|a symbol with spaces|"Hello, world!"-9876543210-0.06.283186.022e23The character# is often used to prefix extensions to the syntax, e.g.#x10 for hexadecimal integers, or#\C for characters.
When representing source code in Lisp, the first element of an S-expression is commonly an operator or function name and any remaining elements are treated as arguments. This is called "prefix notation" or "Polish notation". As an example, theBoolean expression written4 == (2 + 2) inC, is represented as(= 4 (+ 2 2)) in Lisp's s-expr-based prefix notation.
As noted above, the precise definition of "atom" varies across LISP-like languages. A quoted string can typically contain anything but a quote, whilean unquoted identifier atom can typically contain anything but quotes, whitespace characters, parentheses, brackets, braces, backslashes, and semicolons. In either case, a prohibited character can typically be included by escaping it with a preceding backslash.Unicode support varies.
The recursive case of the definition of S-expressions is traditionally implemented usingcons cells.
S-expressions were originally intended only for data to be manipulated byM-expressions, but the first implementation of Lisp was an interpreter of S-expression encodings of M-expressions, and Lisp programmers soon became accustomed to using S-expressions for both code and data.This means that Lisp ishomoiconic; that is, the primary representation of programs is also a data structure in a primitive type of the language itself.
Nested lists can be written as S-expressions:((milk juice) (honey marmalade)) is a two-element S-expression whose elements are also two-element S-expressions. The whitespace-separated notation used in Lisp (and this article) is typical. Line breaks (newline characters) usually qualify as separators. This is a simplecontext-free grammar for a tiny subset of English written as an S-expression,[5] where S = sentence, NP = Noun Phrase, VP = Verb Phrase, V = Verb:
(((S)(NPVP))((VP)(V))((VP)(VNP))((V)died)((V)employed)((NP)nurses)((NP)patients)((NP)Medicenter)((NP)"Dr Chan"))
Program code can be written in S-expressions, usually using prefix notation. Example inCommon Lisp:
(defunfactorial(x)(if(zeropx)1(*x(factorial(-x1)))))
S-expressions can be read in Lisp using the function READ. READ reads the textual representation of an S-expression and returns Lisp data. The function PRINT can be used to output an S-expression. The output then can be read with the function READ, when all printed data objects have a readable representation. Lisp has readable representations for numbers, strings, symbols, lists and many other data types. Program code can be formatted as pretty printed S-expressions using the function PPRINT (note: with two Ps, short forpretty-print).
Lisp programs are valid S-expressions, but not all S-expressions are valid Lisp programs.(1.0 + 3.1) is a valid S-expression, but not a valid Lisp program, since Lisp uses prefix notation and a floating point number (here 1.0) is not valid as an operation (the first element of the expression).
An S-expression preceded by a single quotation mark, as in'x, issyntactic sugar for aquoted S-expression, in this case(quote x).
S-expressions are often compared toXML: one key difference is that S-expressions have just one form of containment, the dotted pair, while XML tags can contain simple attributes, other tags, orCDATA, each using different syntax. Another is that S-expressions do not define a reference mechanism, whereas XML provides a notion of unique identifiers and references to them. For simple use cases, S-expressions are simpler than XML, but for more advanced use cases, XML has a query language calledXPath which many tools and third party libraries use to simplify the handling of XML data.
Standards for some Lisp-derived programming languages include a specification for their S-expression syntax. These includeCommon Lisp (ANSI standard document ANSI INCITS 226-1994 (R2004)),Scheme (R5RS andR6RS[6]), andISLISP.
In May 1997,Ron Rivest submitted anInternet Draft[7] to be considered for publication as anRFC. The draft defined a syntax based on Lisp S-expressions but intended for general-purpose data storage and exchange (similar toXML) rather than specifically for programming. It was never approved as an RFC, but it has since been cited and used by other RFCs (e.g. RFC 2693) and several other publications.[8] It was originally intended for use inSPKI.
Rivest's format defines an S-expression as being either an octet-string (a series ofbytes) or a finite list of other S-expressions. It describes three interchange formats for expressing this structure. One is the "advanced transport", which is very flexible in terms of formatting, and is syntactically similar to Lisp-style expressions, but they are not identical. The advanced transport, for example, allows octet-strings to be represented verbatim (the string's length followed by a colon and the entire raw string), a quoted form allowing escape characters,hexadecimal,Base64, or placed directly as a "token" if it meets certain conditions. (Rivest's tokens differ from Lisp tokens in that the former are just for convenience and aesthetics, and treated exactly like other strings, while the latter have specific syntactical meaning.)
Rivest's draft defines acanonical representation "for digital signature purposes". It is intended to be compact, easier to parse, and unique for any abstract S-expression. It only allows verbatim strings, and prohibits whitespace as formatting outside strings. Finally there is the "basic transport representation", which is either the canonical form or the same encoded as Base64 and surrounded bybraces, the latter intended to safely transport a canonically encoded S-expression in a system which might change spacing (e.g. an email system which has 80-character-wide lines and wraps anything longer than that).
This format has not been widely adapted for use outside of SPKI (some of the users beingGnuPG, libgcrypt,Nettle, andGNU lsh). Rivest's S-expressions web page providesC source code for a parser and generator (available under theMIT license), which could be adapted and embedded into other programs.[9] In addition, there are no restrictions on independently implementing the format.