previous up next
Go backward to Variable Declarations
Go up to Top
Go forward to Semantics of Variables
RISC-Linz logo

Abstract Syntax

D ::= ...| var I
C ::= L:=E | C1;C2 | ...
E ::= N | @L | ...
L ::= I

Example

var X; var Y; proc P = Y:=@X+1
in X:=0; call P


Author: Wolfgang Schreiner
Last Modification: April 23, 1998

previous up next