18 lines
316 B
Plaintext
18 lines
316 B
Plaintext
/* NetRexx */
|
|
options replace format comments java crossref symbols binary
|
|
|
|
import java.util.Scanner
|
|
import java.net.URL
|
|
|
|
do
|
|
rosettaUrl = "http://www.rosettacode.org"
|
|
sc = Scanner(URL(rosettaUrl).openStream)
|
|
loop while sc.hasNext
|
|
say sc.nextLine
|
|
end
|
|
catch ex = Exception
|
|
ex.printStackTrace
|
|
end
|
|
|
|
return
|