Set the minute of the datetime represented by this instance
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer(kind=short), | intent(in) | :: | minute | |||
type(DateTime), | intent(out) | :: | time |
SUBROUTINE SetMinute & ! (minute, time) IMPLICIT NONE ! Arguments with intent(in): INTEGER (KIND = short), INTENT(IN) :: minute ! Arguments with intent(out): TYPE (DateTime), INTENT(OUT) :: time !------------end of declaration------------------------------------------------ time % minute = minute CALL DateCheck (time) END SUBROUTINE SetMinute