Fortraneries/BloubWorld/essai.f90
2022-02-17 10:51:56 +01:00

16 lines
231 B
Fortran

program essai
use mathstuff
implicit none
integer :: foo
real :: quux
call init_random_seed()
do foo=1, 200000
quux = rand()
print *, foo, quux
enddo
end program