print_hex Subroutine

private impure elemental subroutine print_hex(this)

Type Bound

color

Arguments

Type IntentOptional Attributes Name
class(color), intent(in) :: this

Called by

proc~~print_hex~~CalledByGraph proc~print_hex color%print_hex proc~print color%print proc~print->proc~print_hex

Source Code

   elemental impure subroutine print_hex(this)
      class(color), intent(in) :: this
      print'(a,a)', 'hex: ', this%hex
   end subroutine print_hex