Created
October 3, 2018 08:27
-
-
Save vpetrigo/04db645313aa996d546c7137cd94e305 to your computer and use it in GitHub Desktop.
Rowley CrossWorks crossscript example
This file contains hidden or 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 characters
"<path/to/CrossWorks>\bin\crossscript.exe" -load "script.js" -verbose "count();" |
This file contains hidden or 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 characters
// dumb function to test crossscript | |
function count() { | |
var i = 0; | |
WScript.Echo(i.toString() + "\n"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment