Skip to content

Latest commit

 

History

History
6 lines (6 loc) · 114 Bytes

RubyPrivateMethodExample2.md

File metadata and controls

6 lines (6 loc) · 114 Bytes
class Document
  def word_count
    return words.size
  end
  private :word_count
end