Fortraneries/BloubWorld/essai.f90

16 lines
231 B
Fortran
Raw Normal View History

2022-02-17 10:51:56 +01:00
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