RosettaCodeData/Task/HTTPS/Ioke/https.ioke
2023-07-01 13:44:08 -04:00

6 lines
161 B
Text

connection = URL new("https://sourceforge.net") openConnection
scanner = Scanner new(connection getInputStream)
while(scanner hasNext,
scanner next println
)