/** Driver for the Football player program. Here, we create a football * team, and print it out (in some sorted manner). */ import java.io.*; public class Driver { public static void main(String [] args) throws IOException { Team t = new Team(); System.out.println(t); } }