add a useless prog

This commit is contained in:
tTh
2022-12-23 21:13:47 +01:00
parent 3c94d61e24
commit a1c0bf6e34
3 changed files with 30 additions and 1 deletions

23
Fraktalism/plotcolmap.f90 Normal file
View File

@@ -0,0 +1,23 @@
program plotcolmap
use spitpgm
use fractcolmap
implicit none
integer :: argc
character(200) :: mapname, plotname
! -------check for command line arguments
argc = IARGC()
if (2 .NE. argc) then
STOP 'BECAUSE I NEED TWO ARGS'
endif
call getarg(1, mapname)
call getarg(2, plotname)
call fcolm_infos('from plotcolmap')
call fcolm_load_mapfile(trim(mapname))
call fcolm_plot_mapfile(trim(plotname))
end program