FIXME : Add documentation
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in), | optional | :: | a |
subroutine text (a)
use optionals, only: get_option_with_default
implicit none
character (*), intent (in), optional :: a
write(6, '(A)') get_option_with_default(a, '')
end subroutine text