I have a question about creating a linked list in FORTRAN
. I hope some one has some ideas for me!
I want to create a list which contain some nodes and every node has one function.
Is it possible to do this or not? And can I use linked list for this purpose?
TYPE NODE
INTEGER :: handle
DOUBLE PRECISION, FUNCTION :: A
TYPE(NODE) , POINTER :: NEXT
END TYPE NOD