summaryrefslogtreecommitdiff
path: root/ecomp-c/tests/variable_assign_from_constant.e
blob: e1781b6de31bc674bbb66be36a132ff10327cc47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * assign variable from constant
 */

module variable_assign_from_constant;

const
	// integer constant
	N : integer = 20;

var
	// this is an integer
	a : integer;

begin
	a := N;
end