910111213141516171819
public static void main(String[] args) { int port = Integer.parseInt(args[0]); try { s = new Thread(new Server(port)); s.start(); System.out.println("Press any key to exit."); System.in.read(); } catch (Exception e)