class Test
private_class_method :new
def self.test
new(1,2,3,4)
end
private
def initialize(*a)
puts a
end
end
Test.test
Go to list of users who liked
Share on X(Twitter)
Share on Facebook
More than 5 years have passed since last update.
class Test
private_class_method :new
def self.test
new(1,2,3,4)
end
private
def initialize(*a)
puts a
end
end
Test.test
Register as a new user and use Qiita more conveniently
Go to list of users who liked