class Concurrent::LockFreeStack::Node

def initialize(value, next_node)

def initialize(value, next_node)
  @value     = value
  @next_node = next_node
end