Doubly-linked list/Definition: Difference between revisions

Content deleted Content added
m →‎{{header|PureBasic}}: empty lines; markup
Line 1,005:
 
=={{header|PureBasic}}==
<lang PureBasic>DataSection
DataSection
;the list of words that will be added to the list
words:
Line 1,073 ⟶ 1,072:
displayList(a(),"Insertion in Middle: ")
 
Repeat: Until Inkey() <> ""</lang>
</lang>
Example output:
<pre>
<lang PureBasic>
Insertion at Head: Six Five Four Three Two One
Insertion at Tail: One Two Three Four Five Six
Insertion at Middle: One Five Six Three Four Two
</langpre>
 
=={{header|Python}}==