source: CIVL/examples/fortran/smack/forloop.f90

main
Last change on this file was ea777aa, checked in by Alex Wilton <awilton@…>, 3 years ago

Moved examples, include, build_default.properties, common.xml, and README out from dev.civl.com into the root of the repo.

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

  • Property mode set to 100755
File size: 180 bytes
Line 
1! @expect verified
2! @flag --unroll=11
3
4program main
5 implicit none
6 integer :: x = 0
7 integer i
8 do i = 1, 10
9 x = x + 5
10 end do
11 !$CVL $assert(x == 50)
12end program main
Note: See TracBrowser for help on using the repository browser.