Last active
October 4, 2015 14:38
-
-
Save ff6347/2654512 to your computer and use it in GitHub Desktop.
What is a targetengine in extendscript?
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 characters
#targetengine "session01" | |
var myValue = 0; // new value | |
alert(myValue); // result is 0 | |
myValue++; // increment by 1 |
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 characters
#targetengine "session01" | |
alert(myValue); // result is 1 |
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 characters
Der Algorithmus lautet wie folgt: | |
Start | |
Sitzung 1 | |
definiere Variable meinWert und Speicher 0 in ihr | |
zeige Wert von meinWert | |
erhöhe meinWert um eins | |
Stop | |
Start | |
Sitzung 1 | |
zeige Wert von meinWert | |
Stop |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This Gist is part of MT4D coming soon on fabiantheblind.info