class Gloater

Public Class Methods

gloat(num) click to toggle source
# File lib/gloater.rb, line 2
def self.gloat(num)
  num.times do
    puts "I rock!"
  end
end