# File lib/Borges/Profile/Profile.rb, line 6
  def self.profile
    io = StringIO.new
    start_profile
    yield
    print_profile io
    return io.string
  end