Whitespace (programming language): Difference between revisions

Content deleted Content added
Strib (talk | contribs)
m Copy-edit
Strib (talk | contribs)
m Add external link to Slashdot announcement
Line 1:
'''Whitespace''' is a [[programming language]] developed by [[Edwin Brady]] and [[Chris Morris (cim)|Chris Morris]]. inIt was released on [[1 April]] [[2003]]. The interpreter ignores any non whitespace characters. Only spaces, tabs and newlines are considered syntax.
 
The language itself is an [[imperative]], [[Stack (computing)|stack]] based language. The [[virtual machine]] on which programs run has a stack and a [[heap]]. The programmer is free to push arbitrary width integers onto the stack (only integers, currently there is no implementation of floating point or real numbers). The user can also access the heap as a permanent store for variables and [[data structures]].
Line 12:
 
* [http://compsoc.dur.ac.uk/whitespace/ Whitespace homepage]
* [http://developers.slashdot.org/article.pl?sid=03/04/01/0332202 Release announcement on Slashdot]
 
----