Skip to content

Instantly share code, notes, and snippets.

@asbestos
Created March 30, 2015 09:23
Show Gist options
  • Save asbestos/02d664d5b6c5b015d2c5 to your computer and use it in GitHub Desktop.
Save asbestos/02d664d5b6c5b015d2c5 to your computer and use it in GitHub Desktop.
JScript print to console
var print = (function(){
var out = WScript.StdOut;
var print = function print(message){
out.WriteLine(message);
};
return print;
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment