https://github.com/alphaparrot/ExoPlaSim
Raw File
Tip revision: f19b1f35686598f8cb165ac01e2a942ce6a1ed56 authored by Adiv Paradise on 09 December 2019, 23:30:26 UTC
Merge branch 'starcolor'
Tip revision: f19b1f3
f90check.f90
program f90check
integer :: i = 258
real    :: r = 1.0
open(21,file='F90_INTEGER',form='unformatted')
write (21) i
close(21)
open(21,file='F90_REAL',form='unformatted')
write (21) r
close(21)
!call csub(i,r)
stop
end program f90check
back to top