RosettaCodeData/Task/Sockets/Icon/sockets.icon

9 lines
198 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
link cfunc
procedure main ()
hello("localhost", 1024)
end
procedure hello (host, port)
write(tconnect(host, port) | stop("unable to connect to", host, ":", port) , "hello socket world")
end