source: CIVL/mods/dev.civl.com/examples/languageFeatures/for.cvl@ bc0fbae

main test-branch
Last change on this file since bc0fbae was aad342c, checked in by Stephen Siegel <siegel@…>, 3 years ago

Performing huge refactor to incorporate ABC, GMC, and SARL into CIVL repo and use Java modules.

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

  • Property mode set to 100644
File size: 192 bytes
RevLine 
[36b5ada]1/* Commandline execution:
2 * civl verify for.cvl
3 * */
[8bd0ed8]4void main() {
5 int j = 0;
[ddb3718]6 int x, y;
[8bd0ed8]7
[8fa5a7b]8 for (int i=0; i<10; i++) ;
[8bd0ed8]9 for (; j<10; j++) ;
[ddb3718]10 for(x=0, y=1; x<10; x++){
11 y++;
12 }
[8bd0ed8]13}
Note: See TracBrowser for help on using the repository browser.