example5.f90 Source File


This file depends on

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

Source Code

program example5

   use fortime

   implicit none

   type(timer) :: t

   call t%dtimer_start()
    call sleep(1) ! Perform operations here
   call t%dtimer_stop()

end program example5