Logo

Programming-Idioms

History of Idiom 61 > diff from v36 to v37

Edit summary for version 37 by tkoenig:
New Fortran implementation by user [tkoenig]

Version 36

2018-12-18, 15:41:17

Version 37

2019-09-26, 20:40:34

Idiom #61 Get current date

Assign to variable d the current date/time value, in the most standard type.

Idiom #61 Get current date

Assign to variable d the current date/time value, in the most standard type.

Code
integer, dimension(8) :: d

call date_and_time (values=d)

Comments bubble
date_and_time is a standard subroutine.