SyntaxFix
Write A Post
Hire A Developer
Questions
As of ruby 2.3.0
class Check def self.first_method second_method end private def self.second_method puts "well I executed" end end Check.first_method #=> well I executed