13 lines
264 B
Text
13 lines
264 B
Text
use Net;
|
|
|
|
bundle Default {
|
|
class Socket {
|
|
function : Main(args : String[]) ~ Nil {
|
|
socket := TCPSocket->New("localhost", 256);
|
|
if(socket->IsOpen()) {
|
|
socket->WriteString("hello socket world");
|
|
socket->Close();
|
|
}
|
|
}
|
|
}
|
|
}
|