mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
11 lines
281 B
FortranFixed
11 lines
281 B
FortranFixed
|
C This is part of Unidata's netCDF package. Copyright 2009.
|
||
|
C This is a test program for the nc-config utility.
|
||
|
|
||
|
program test_prog
|
||
|
implicit none
|
||
|
#include "netcdf.inc"
|
||
|
print *, 'NetCDF version: ', nf_inq_libvers()
|
||
|
print *, '*** SUCCESS!'
|
||
|
end
|
||
|
|