New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
hello_constants.f90.ok in vendors/test/repos/cyclic_dependency – NEMO

source: vendors/test/repos/cyclic_dependency/hello_constants.f90.ok @ 10669

Last change on this file since 10669 was 10669, checked in by nicolasmartin, 5 years ago

Import latest FCM release from Github into the repository for testing

File size: 278 bytes
Line 
1MODULE Hello_Constants
2
3INCLUDE 'hello_constants_dummy.inc'
4
5CONTAINS
6
7SUBROUTINE Hello_Sub_Wrapper (integer_arg)
8
9IMPLICIT NONE
10
11INTEGER :: integer_arg
12
13INCLUDE 'hello_sub2.interface'
14
15CALL Hello_Sub2 (integer_arg)
16
17END SUBROUTINE Hello_Sub_Wrapper
18
19END MODULE Hello_Constants
Note: See TracBrowser for help on using the repository browser.