write_key_val_logical Subroutine

private subroutine write_key_val_logical(key, val, unit)

Writes a {key,val} pair where the value is of type logical

Type Bound

abstract_config_type

Arguments

Type IntentOptional Attributes Name
character(len=*), intent(in) :: key
logical, intent(in) :: val
integer, intent(in) :: unit

Contents

Source Code


Source Code

  subroutine write_key_val_logical(key, val, unit)
    character(len=*), intent(in) :: key
    logical, intent(in) :: val
    integer, intent(in) :: unit
    write(unit,'("  ",A," = "," ",L1)') format_key(key), val
  end subroutine write_key_val_logical