Skip to content

Instantly share code, notes, and snippets.

@antonkartashov
Last active August 29, 2015 14:26
Show Gist options
  • Save antonkartashov/f2e251c68c1f2be49a80 to your computer and use it in GitHub Desktop.
Save antonkartashov/f2e251c68c1f2be49a80 to your computer and use it in GitHub Desktop.
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