Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 332 Bytes

README.md

File metadata and controls

20 lines (13 loc) · 332 Bytes

List

Fortran List

An easy-to-use implementation of lists in Fortran

WIP

Contains

  • 'dllnode_mod' for nodes of a double-linked list

  • `dll_mod' for a list with Python like methods

Methods

  • constructor (WIP)

'''python thislist = list(("apple", "banana", "cherry")) # note the double round-brackets print(thislist) '''