package socket_chat_tcp; /** * Created with xgiovio.macbookair. * User: xgiovio * Date: 02/12/14 * Time: 18:20 */ public class LaunchServer { public static void main (String[] args) { Server s = new Server(20000); s.launch(); } }