Last active
August 29, 2015 14:26
-
-
Save antonkartashov/f2e251c68c1f2be49a80 to your computer and use it in GitHub Desktop.
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
var colour = ["red", "green", "blue"]; | |
for (var i = 0; i < 10; i++) { | |
var text = colour[i]; print(text); | |
} if (colour.length < 3) { | |
print(colour.length); | |
} | |
var circle = new Layer { | |
x: 320; y: 240; borderRadius: 50; | |
} | |
circle.animate ({ x: 640, y: 0 }, 200,4); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment