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.F90 in vendors/FCM-2017.10.0/test/repos/cyclic_dependency – NEMO

source: vendors/FCM-2017.10.0/test/repos/cyclic_dependency/hello.F90 @ 11998

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

Reimport latest FCM release

File size: 278 bytes
Line 
1PROGRAM Hello
2
3USE Hello_Constants, ONLY: hello_string, Hello_Sub_Wrapper
4
5IMPLICIT NONE
6
7INTEGER :: integer_arg = 1234
8
9CHARACTER (LEN=*), PARAMETER :: this = 'Hello'
10
11WRITE (*, '(A)') this // ': ' // TRIM (hello_string)
12CALL Hello_Sub_Wrapper (integer_arg)
13
14END PROGRAM Hello
Note: See TracBrowser for help on using the repository browser.