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