RosettaCodeData/Task/HTTPS/Ioke/https.ioke

7 lines
161 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
connection = URL new("https://sourceforge.net") openConnection
scanner = Scanner new(connection getInputStream)
while(scanner hasNext,
scanner next println
)