Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

Joy (programming language)

From Wikipedia, the free encyclopedia
Programming language
This articlepossibly containsoriginal research. Pleaseimprove it byverifying the claims made and addinginline citations. Statements consisting only of original research should be removed.(May 2009) (Learn how and when to remove this message)
Joy
Paradigmmulti-paradigm:functional,concatenative,stack-oriented
Designed byManfred von Thun
DeveloperManfred von Thun
John Cowan
First appeared2001
Stable release
March 17, 2003 / March 17, 2003
Typing disciplinestrong,dynamic
Majorimplementations
Joy0, Joy1, "Current Joy", "John Cowan's Joy", "JoyJ (Joy in jvmm)"
Influenced by
Scheme,FP,Forth
Influenced
Factor, Cat, V, Trith

TheJoy programming language incomputer science is apurely functional programming language that was produced by Manfred von Thun ofLa Trobe University inMelbourne,Australia. Joy is based on composition of functions rather thanlambda calculus. It was inspired by thefunction-level programming style ofJohn Backus'sFP.[1]It has turned out to have many similarities toForth, due not to design but to an independent evolution and convergence.[citation needed]

Overview

[edit]

Functions in Joy lackformal parameters. For example, a function that squares a numeric input can be expressed as follows:[2]

DEFINE square == dup * .

In Joy, everything is a function that takes astack as an argument and returns a stack as a result. For instance, the numeral '5' does not represent an integer constant, but instead a short program that pushes the number 5 onto the stack.

  • Thedup operator simply duplicates the top element of the stack by pushing a copy of it.
  • The* operator pops two numbers off the stack and pushes their product.

So the square function makes a copy of the top element, and then multiplies the two top elements of the stack, leaving the square of the original top element at the top of the stack, with no need for a formal parameter. This makes Joy concise, as illustrated by this definition ofquicksort:[3]

DEFINE qsort ==  [small]  []  [uncons [>] split]  [swapd cons concat]  binrec.

Mathematical purity

[edit]

Joy is aconcatenative programming language: "The concatenation of two programs denotes the composition of the functions denoted by the two programs".[4]

See also

[edit]

References

[edit]
  1. ^Manfred von Thun (December 12, 2003)."A Conversation with Manfred von Thun". RetrievedMay 31, 2013. In the early 1980s I came across the famous Backus paper "Can programming be liberated from the von Neumann style," and I was immediately intrigued by the higher level of programming in his FP.
  2. ^"An informal tutorial on Joy". Archived fromthe original on October 7, 2011.
  3. ^"Sequence Library". Archived fromthe original on October 7, 2011.
  4. ^"Mathematical Foundations of Joy". Archived fromthe original on October 7, 2011.

External links

[edit]
Retrieved from "https://en.wikipedia.org/w/index.php?title=Joy_(programming_language)&oldid=1291973433"
Categories:
Hidden categories:

[8]ページ先頭

©2009-2025 Movatter.jp