The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
406 B
17 lines
406 B
use hdf5 |
|
|
|
implicit none |
|
|
|
integer :: ier, major, minor, rel |
|
|
|
call h5open_f(ier) |
|
if (ier /= 0) error stop 'Unable to initialize HDF5' |
|
|
|
call h5get_libversion_f(major, minor, rel, ier) |
|
if (ier /= 0) error stop 'Unable to check HDF5 version' |
|
print '(A,I1,A1,I0.2,A1,I1)','Fortran HDF5 version ',major,'.',minor,'.',rel |
|
|
|
call h5close_f(ier) |
|
if (ier /= 0) error stop 'Unable to close HDF5 library' |
|
|
|
end program
|
|
|