# basic2.txt

class MyClass

  attr_reader :foo

  private

  def helper(str)
    puts "helper(#{str})"
  end

end
