RosettaCodeData/Task/Sockets/Fantom/sockets.fantom
2023-07-01 13:44:08 -04:00

14 lines
213 B
Text

using inet
class Socket
{
public static Void main ()
{
sock := TcpSocket()
sock.connect(IpAddr("localhost"), 256)
sock.out.printLine("hello socket world")
sock.out.flush
sock.close
}
}