This commit is contained in:
tth
2022-02-17 10:51:56 +01:00
parent c07b5f163f
commit aa73934c72
3 changed files with 31 additions and 3 deletions

16
BloubWorld/essai.f90 Normal file
View File

@@ -0,0 +1,16 @@
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