RosettaCodeData/Task/HTTPS/Ioke/https.ioke

7 lines
161 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
connection = URL new("https://sourceforge.net") openConnection
scanner = Scanner new(connection getInputStream)
while(scanner hasNext,
scanner next println
)