renaming a non-working software

This commit is contained in:
tTh
2023-01-03 01:19:39 +01:00
parent da56a6d0c0
commit 0e73e47272
3 changed files with 37 additions and 6 deletions

31
Fraktalism/mklorentz.f90 Normal file
View File

@@ -0,0 +1,31 @@
!
! this is the main programm
!
!-----------------------------------------------------
program lorentz
use spitpgm
use fraktals
implicit none
integer, dimension(800, 600) :: picz
integer :: argc
character(200) :: filename
argc = IARGC()
if (1 .NE. argc) then
STOP ": MKLORENTZ NEED A FILENAME !"
endif
call getarg(1, filename)
write (0, "(A)") "Mk Lorentz -> "//trim(filename)
call lorentz_0(picz, 50000)
call spit_as_pgm_8(picz, trim(filename))
end program
!-----------------------------------------------------