#!/usr/bin/env ruby
# frozen_string_literal: true

10.times do
  print "."
  sleep 0.001
end
