source: CIVL/examples/languageFeatures/for.cvl@ 7a7bed3

1.23 2.0 main test-branch
Last change on this file since 7a7bed3 was 36b5ada, checked in by Manchun Zheng <zmanchun@…>, 12 years ago

Cleaned up examples.

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

  • Property mode set to 100644
File size: 139 bytes
Line 
1/* Commandline execution:
2 * civl verify for.cvl
3 * */
4void main() {
5 int j = 0;
6
7 for (int i=0; i<10; i++) ;
8 for (; j<10; j++) ;
9}
Note: See TracBrowser for help on using the repository browser.