type_variable_info Derived Type

type :: type_variable_info


Components

Type Visibility Attributes Name Initial
character(len=:), public, allocatable :: category
character(len=:), public, allocatable :: name

Source Code

    type :: type_variable_info
        character(:), allocatable :: name ! 変数名
        character(:), allocatable :: category ! カテゴリ名
    end type type_variable_info