class Tryouts::Section

def initialize path, start=0

def initialize path, start=0
  @path = path
  @first, @last = start, start
end

def inspect

def inspect
  range.to_a.zip(self).collect do |line|
    "%-4d %s\n" % line
  end.join
end

def range

def range
  @first..@last
end

def to_s

def to_s
  self.join($/)
end