RosettaCodeData/Task/Sockets/Fantom/sockets.fantom

15 lines
213 B
Text
Raw Permalink Normal View History

2013-04-11 01:07:29 -07:00
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
}
}