Singly-linked list/Element definition: Difference between revisions

Content added Content deleted
m (syntax highlighting fixup automation)
(Added Odin variant)
Line 1,104: Line 1,104:


but that would be really awkward to use.
but that would be really awkward to use.

=={{header|Odin}}==

<syntaxhighlight lang="odin">Node :: struct {
data: rune,
next: ^Node,
}</syntaxhighlight>


=={{header|Oforth}}==
=={{header|Oforth}}==