RosettaCodeData/Task/Singly-linked-list-Element-definition/Fantom/singly-linked-list-element-definition.fantom
Ingy döt Net 68f8f3e56b all tasks
2013-04-11 01:07:29 -07:00

11 lines
251 B
Text

class Node
{
const Int value // keep value fixed
Node? successor // allow successor to change, also, can be 'null', for end of list
new make (Int value, Node? successor := null)
{
this.value = value
this.successor = successor
}
}