printme Subroutine

subroutine printme(mymode)

Arguments

Type IntentOptional Attributes Name
character(len=*), intent(in) :: mymode

Source Code

   subroutine printme(mymode)
   character(len=*),intent(in) :: mymode
      call attr_mode(mymode)
      write(*,'(a)')mymode
      write(*,'(a)')attr('<ERROR>Woe is nigh.')
      write(*,'(a)')attr('<WARNING>The night is young.')
      write(*,'(a)')attr('<INFO>It is Monday')
   end subroutine printme