The topic of this article may not meet Wikipedia's general notability guideline. Please help to demonstrate the notability of the topic by citing reliable secondary sources that are independent of the topic and provide significant coverage of it beyond a mere trivial mention. If notability cannot be shown, the article is likely to be merged, redirected, or deleted.Find sources: "Expression-oriented programming language" – news · newspapers · books · scholar · JSTOR (July 2022) (Learn how and when to remove this message)

An expression-oriented programming language is a programming language in which every (or nearly every) construction is an expression and thus yields a value.[1] The typical exceptions are macro definitions, preprocessor commands, and declarations, which expression-oriented languages often treat as statements.

Lisp[2] and ALGOL 68 are expression-oriented languages. Pascal is not an expression-oriented language.

All functional programming languages are expression-oriented.[3]

Criticism and prevention

This article or section possibly contains synthesis of material which does not verifiably mention or relate to the main topic. Relevant discussion may be found on the talk page. (July 2022) (Learn how and when to remove this message)

See also: Assignment (computer science) § Assignment versus equality, and Relational operator § Confusion with assignment operators

Critics, including language designers,[4][failed verification] blame expression-orientation for an entire class of programming mistakes wherein a programmer accidentally codes an assignment expression, which replaces a variable with an expression rather than testing it for equality with that expression.

The designers of Ada and Java prevent this type of mistake by restricting control expressions to those that evaluate strictly to the boolean data type.[5][6]

The designers of Python implemented assignment as a statement rather than an expression, thus prohibiting assignment from nesting inside any other statement or expression.[7] (Until version 3.8 added 'assignment expressions', with a different syntax.[8])

In some expression-oriented languages, expressions that merely cause side effects return void types.

Examples

This article needs additional citations for verification. Please help improve this article by adding citations to reliable sources. Unsourced material may be challenged and removed.Find sources: "Expression-oriented programming language" – news · newspapers · books · scholar · JSTOR (July 2022) (Learn how and when to remove this message)
This section needs expansion. You can help by adding to it. (February 2018)

See also

References

  1. ^ "Glossary - The Rust Programming Language". web.mit.edu. Retrieved 2022-07-06.
  2. ^ a b Syme, Don (2020-06-14). "The early history of F#". Proceedings of the ACM on Programming Languages. 4 (HOPL): 1–58. doi:10.1145/3386325. ISSN 2475-1421.
  3. ^ "Expression Oriented Programming". Knoldus - Technical Insights. 2018-02-08. Retrieved 2023-08-07.
  4. ^ Java Code Conventions "10.4 Variable Assignments"
  5. ^ The Java Language Specification, Java SE 8 Edition "14.9 The if Statement"
  6. ^ Introducing Ada
  7. ^ The Python Language Reference "6.2. Assignment statements"
  8. ^ "PEP 572: Assignment Expressions"
  9. ^ "Functions - The Rust Programming Language". web.mit.edu. Retrieved 2022-07-06.
  10. ^ "COS 326: Functional Programming". www.cs.princeton.edu. Retrieved 2022-07-06.