source: CIVL/examples/sideEffects.cvl@ c777ef2

1.23 2.0 main test-branch
Last change on this file since c777ef2 was b6c1fcb, checked in by Tim Zirkel <zirkeltk@…>, 13 years ago

Initial commit of model builder, side effect remover, and other related classes.

git-svn-id: svn://vsl.cis.udel.edu/civl/trunk@31 fb995dde-84ed-4084-dfe6-e5aef3e2452c

  • Property mode set to 100644
File size: 86 bytes
Line 
1
2void main() {
3int a;
4int b;
5int c;
6
7a = b = c = 0;
8b++;
9a = ++b;
10c = a--;
11b = c++;
12}
Note: See TracBrowser for help on using the repository browser.