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.
greet.f90 in vendors/t/fcm-make/18-build-use-intrinsic/src – NEMO

source: vendors/t/fcm-make/18-build-use-intrinsic/src/greet.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: 273 bytes
Line 
1program greet
2implicit none
3include 'hello.interface'
4include 'hi.interface'
5abstract interface
6subroutine abstract_greet()
7end subroutine abstract_greet
8end interface
9procedure(abstract_greet), pointer :: say
10say => hello
11call say()
12say => hi
13call say()
14end program greet
Note: See TracBrowser for help on using the repository browser.