mirror of https://github.com/patacrep/patacrep.git
Engine for LaTeX songbooks
http://www.patacrep.com
4 lines
186 B
4 lines
186 B
11 years ago
|
var WinHttpReq = new ActiveXObject("WinHttp.WinHttpRequest.5.1");
|
||
|
WinHttpReq.Open("GET", WScript.Arguments(0), /*async=*/false);
|
||
|
WinHttpReq.Send();
|
||
|
WScript.Echo(WinHttpReq.ResponseText);
|