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/t/etc/repo_files/program – NEMO

source: vendors/t/etc/repo_files/program/hello.F90 @ 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: 352 bytes
Line 
1PROGRAM Hello
2
3USE Hello_Constants, ONLY: hello_string
4
5IMPLICIT NONE
6
7INTEGER :: integer_arg = 1234
8
9#if defined(CALL_HELLO_SUB)
10INCLUDE 'hello_sub.interface'
11#endif
12
13CHARACTER (LEN=*), PARAMETER :: this = 'Hello'
14
15WRITE (*, '(A)') this // ': ' // TRIM (hello_string)
16#if defined(CALL_HELLO_SUB)
17CALL Hello_Sub (integer_arg)
18#endif
19
20END PROGRAM Hello
Note: See TracBrowser for help on using the repository browser.