summaryrefslogtreecommitdiff
path: root/ecomp-c/test1.e
blob: 4043bf8cabc03379e1944f74347963f16daf7577 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * module trying to show all features of the language
 */
module test1;
	
var
	// this is an integer
	a : integer;
	
	// this is also an integer
	b : integer;
	c : integer; // c too

begin
	a := 1;
	b := 7;
	c := 8;
end