example1.f90 Source File


This file depends on

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

Source Code

program example1

   use fortime

   implicit none

   type(timer) :: t

   call t%timer_start()
    call sleep(1) ! Perform operations here
   call t%timer_stop()

end program example1