Singly-linked list/Element definition: Difference between revisions

Content deleted Content added
Peter (talk | contribs)
m edited Fantom example to allow 'null' successor
Peter (talk | contribs)
m →‎{{header|Fantom}}: and the default successor is 'null'
Line 144:
Node? successor // allow successor to change, also, can be 'null', for end of list
 
new make (Int value, Node? successor := null)
{
this.value = value