Create an author
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | name |
Name of the author |
The new author
pure function author_name(name) result(author) !> Name of the author character(len=*), intent(in) :: name !> The new author type(author_type) :: author author%name = name end function author_name