aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test5
blob: fb72d415ba293d3b19b5f88008c201e92e9c805b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
machine A
[
	states [ A ];
	events [ A ];
	starting on A;
	transitions
	[
		from A to A on event A
			if (A.A && !A.A)
				execute eke;
			else
				execute asdf;
	];
];