RosettaCodeData/Task/Singly-linked-list-Element-definition/Fantom/singly-linked-list-element-definition.fantom
2023-07-01 13:44:08 -04: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
}
}