source: LMDZ6/branches/Amaury_dev/tools/fcm/t/fcm-make/23-build-omp/src/p1.f90 @ 5095

Last change on this file since 5095 was 5095, checked in by abarral, 2 months ago

Revert cosp*/ from the trunk, as it's external code
Add missing bits from FCM2 source

File size: 272 bytes
Line 
1program p1
2
3!$ use omp_lib
4!$ use m1, only: s1
5
6integer, parameter :: n=100
7integer :: i
8real :: x(n), y(n), z(n)
9
10include 's3.interface'
11
12x(:) = 1.0
13y(:) = 1.0
14z(:) = 1.0
15!$ include "i1.f90"
16call s3(n, z, y)
17do i = 1, n
18    write(*, '(f3.1)') z(i)
19end do
20
21end program p1
Note: See TracBrowser for help on using the repository browser.