24 lines
719 B
Fortran
24 lines
719 B
Fortran
|
!-----------------------------------------------------------------------
|
||
|
!-
|
||
|
! convertir un dum de champ de reel en .PNG
|
||
|
! nouveau 17 decembre 2022
|
||
|
!-
|
||
|
!-----------------------------------------------------------------------
|
||
|
program realdump2png
|
||
|
use realfield
|
||
|
implicit none
|
||
|
|
||
|
stop "BECAUSE I'M TIRED *NOW*"
|
||
|
|
||
|
contains
|
||
|
!-----------------------------------------------------------------------
|
||
|
|
||
|
subroutine load_a_dump_file(fname, location)
|
||
|
character(len=*), intent(in) :: fname
|
||
|
real, dimension(:,:), intent(inout) :: location
|
||
|
|
||
|
end subroutine
|
||
|
!-----------------------------------------------------------------------
|
||
|
end program
|
||
|
!-----------------------------------------------------------------------
|