example2.f90 Source File


This file depends on

sourcefile~~example2.f90~~EfferentGraph sourcefile~example2.f90 example2.f90 sourcefile~fortime.f90 fortime.f90 sourcefile~example2.f90->sourcefile~fortime.f90

Source Code

program example2

   use fortime

   implicit none

   type(timer) :: t
   integer :: nl, nloops=3

   call t%timer_start()
    do nl = 1, nloops
        call sleep(1) ! Perform operations ntimes
    end do
   call t%timer_stop(nloops = nloops, message = 'Elapsed time:', print = .true., color='green') ! nloops, message, print and color are optional. 
   call t%timer_write('example/example2_etimes.txt') ! Optionally, write the elapsed time to a file

end program example2