7 lines
132 B
Text
7 lines
132 B
Text
var node = Hash.new(
|
|
data => 'say what',
|
|
next => foo_node,
|
|
prev => bar_node,
|
|
);
|
|
|
|
node{:next} = quux_node; # mutable
|