9 lines
117 B
FortranFixed
9 lines
117 B
FortranFixed
|
|
type node
|
||
|
|
real :: data
|
||
|
|
type( node ), pointer :: next => null()
|
||
|
|
end type node
|
||
|
|
!
|
||
|
|
!. . . .
|
||
|
|
!
|
||
|
|
type( node ) :: head
|