// ServerSpawner.java import java.io.*; public class ServerSpawner { public static void main(String[] args) throws IOException { new Server(2225).start(); } }