Mouse (programming language): Difference between revisions

Content deleted Content added
m Added internal link to related topic.
m Conformed 1 heading capitalization to Wikipedia Style Manual.
Line 5:
The elements of the Mouse language consist of a set of (mostly) one-character symbols, each of which performs a specific function (see table below). Since variable names are limited to one character, there are only 26 possible variables in Mouse (named A-Z). Integers and characters are the only available data types.
 
Despite these limitationslimits, Mouse includes a number of relatively advanced features, including:
 
* Conditional branching
Line 172:
Here again ''B'' is a boolean value (0 or 1), and ''S'' is a sequence of statements.
 
====Macro Callscalls====
 
The format of a macro (subroutine) call may be illustrated by the following example. Macro A in this example adds the two parameters passed to it from the main program, and returns the sum on the top of the stack.