I have recently started learning Fortran 90 for the fun of it, and I want to know if there is any simple way to display the time taken to execute my code. It is just simple loop that counts to a million, and I want to see how long it takes to do that.
If it helps, here is the code I'm using:
program count
implicit none
integer :: i
do i=0,1000000
print*,i
end do
end program count
I am on Linux using gFortran as my compiler. I am using Geany as a text editor.
Thanks in advance.