mirror of
https://github.com/curioustorvald/tsvm.git
synced 2026-03-07 19:51:51 +09:00
12 lines
188 B
JavaScript
12 lines
188 B
JavaScript
let url="http:localhost/testnet/test.txt"
|
|
|
|
let file = files.open("B:\\"+url)
|
|
|
|
if (!file.exists) {
|
|
printerrln("No such URL: "+url)
|
|
return 1
|
|
}
|
|
|
|
let text = file.sread()
|
|
println(text)
|