7 lines
161 B
Text
7 lines
161 B
Text
|
|
connection = URL new("https://sourceforge.net") openConnection
|
||
|
|
scanner = Scanner new(connection getInputStream)
|
||
|
|
|
||
|
|
while(scanner hasNext,
|
||
|
|
scanner next println
|
||
|
|
)
|