!747 m { static int port = 1234; p { print("Helloing " + port); Socket s = new Socket("localhost", port); OutputStream out = s.getOutputStream(); out.write("hello!\n".getBytes("UTF-8")); s.close(); print("Done!"); } }