package socket_chat_tcp; /** * Created with xgiovio.macbookair. * User: xgiovio * Date: 02/12/14 * Time: 17:28 */ public class LaunchClient { public static void main (String[] args) { Client c1 = new Client("mario","localhost",20000); c1.launch(); } }