Skip to content

Instantly share code, notes, and snippets.

@Chryus
Created March 15, 2014 16:38
Show Gist options
  • Save Chryus/9570134 to your computer and use it in GitHub Desktop.
Save Chryus/9570134 to your computer and use it in GitHub Desktop.
class Node
attr_reader :content
attr_accessor :neighbor
def initialize(x)
@content = x
@neighbor = nil
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment