mirror of
https://github.com/curioustorvald/tsvm.git
synced 2026-06-06 21:44:04 +09:00
14 lines
451 B
JavaScript
14 lines
451 B
JavaScript
/*let url="https:raw.githubusercontent.com/curioustorvald/hopper-mirror/refs/heads/master/aa.hop.per"
|
|
|
|
let file = files.open("B:\\"+url)
|
|
|
|
if (!file.exists) {
|
|
printerrln("No such URL: "+url)
|
|
return 1
|
|
}*/
|
|
|
|
let net = require("A:/tvdos/include/net.mjs")
|
|
let text = net.fetchText("https://raw.githubusercontent.com/curioustorvald/hopper-mirror/refs/heads/master/aa.hop.per")
|
|
if (text === null) { printerrln("No such URL"); return 1 }
|
|
println(text)
|