Last active
April 1, 2021 04:45
-
-
Save kavun/5718851 to your computer and use it in GitHub Desktop.
Revisions
-
kavun renamed this gist
Jun 8, 2013 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,8 +1,8 @@ function print(text) { WScript.Echo('> ' + text); } var stdin = WScript.StdIn; var stdout = WScript.StdOut; var input; -
kavun revised this gist
Jun 8, 2013 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,5 @@ function print(text) { WScript.Echo('> ' + text); } var stdin = WScript.StdIn; -
kavun created this gist
Jun 6, 2013 .There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,16 @@ 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');