example3.f90 Source File


This file depends on

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

Source Code

program example3

   use fortime

   implicit none

   type(timer) :: t

   call t%ctimer_start()
    call sleep(1) ! Perform operations here
   call t%ctimer_stop()

end program example3