token_type Derived Type

type, public :: token_type

Text token


Components

Type Visibility Attributes Name Initial
integer, public :: first

Begin of sequence

integer, public :: last

End of sequence


Source Code

   type :: token_type
      !> Begin of sequence
      integer :: first
      !> End of sequence
      integer :: last
   end type token_type