RosettaCodeData/Task/Hostname/Objeck/hostname.objeck
2023-07-01 13:44:08 -04:00

9 lines
142 B
Text

use Net;
bundle Default {
class Hello {
function : Main(args : String[]) ~ Nil {
TCPSocket->HostName()->PrintLine();
}
}
}