print_user_name Subroutine

private impure elemental subroutine print_user_name(this)

Type Bound

ChatCompletion

Arguments

Type IntentOptional Attributes Name
class(ChatCompletion), intent(inout) :: this

Source Code

   elemental impure subroutine print_user_name(this)
      class(ChatCompletion), intent(inout) :: this
      print "('user name: ',A)", trim(this%user_name)
   end subroutine print_user_name