Linked list example – short version
Linked list example – short version using inspect
Methods
Class Public methods
new(x, y)
Link
Source: show
# File sample/list.rb, line 58 def initialize(x, y) @x = x; @y = y self end
Instance Public methods