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_num.f90 in vendors/tutorial/trunk-r1/src/module – NEMO

source: vendors/tutorial/trunk-r1/src/module/hello_num.f90 @ 10669

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

Import latest FCM release from Github into the repository for testing

File size: 355 bytes
Line 
1MODULE hello_number
2
3IMPLICIT NONE
4
5PRIVATE
6INTEGER, PARAMETER :: i=0
7INTEGER, PARAMETER :: huge_number=HUGE(i)
8
9PUBLIC hello_huge_number
10
11CONTAINS
12SUBROUTINE hello_huge_number()
13CHARACTER(LEN=*), PARAMETER :: this='hello_huge_number'
14WRITE(*, '(A,I0)') this // ': maximum integer: ', huge_number
15END SUBROUTINE hello_huge_number
16
17END MODULE hello_number
Note: See TracBrowser for help on using the repository browser.