RosettaCodeData/Task/DNS-query/Lasso/dns-query-2.lasso
2016-12-05 23:44:36 +01:00

13 lines
344 B
Text

/* NetRexx */
options replace format comments java crossref symbols nobinary
ir = InetAddress
addresses = InetAddress[] InetAddress.getAllByName('www.kame.net')
loop ir over addresses
if ir <= Inet4Address then do
say 'IPv4 :' ir.getHostAddress
end
if ir <= Inet6Address then do
say 'IPv6 :' ir.getHostAddress
end
end ir