class Tryouts::CLI::CompactFormatter

def separator(style = :light)

def separator(style = :light)
  case style
  when :heavy
    puts '=' * 50
  when :light
    puts '-' * 50
  when :dotted
    puts '.' * 50
  else
    puts '-' * 50
  end
end