Skip to content

Instantly share code, notes, and snippets.

@kavun
Last active April 1, 2021 04:45
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save kavun/5718851 to your computer and use it in GitHub Desktop.
Save kavun/5718851 to your computer and use it in GitHub Desktop.
JScript in/out console for Windows Script Host
function print(text) {
WScript.Echo('> ' + text);
}
var stdin = WScript.StdIn;
var stdout = WScript.StdOut;
var input;
do {
var input = stdin.ReadLine();
try {
print(eval(input));
} catch (e) {
print(e.name + ': ' + e.message);
}
} while (input != 'exit');
@kavun
Copy link
Author

kavun commented Jun 6, 2013

execute with cscript WSHRepl.js
output with print('text');

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment