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/fcm-make/07-build-ns-dep/src/main – NEMO

source: vendors/t/fcm-make/07-build-ns-dep/src/main/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: 276 bytes
Line 
1program hello
2character(5) :: w
3interface
4subroutine greet(hello, world)
5character(*), intent(in) :: hello, world
6end subroutine greet
7subroutine world(w)
8character(*), intent(out) :: w
9end subroutine world
10end interface
11call world(w)
12call greet('Hello', w)
13end program hello
Note: See TracBrowser for help on using the repository browser.