Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
We've encountered an issue exporting this macro. Please try exporting this page again later.

In origami, there are many types of base folds that give you a good starting point for more complex creations. In order to make an origami crane, you would first start out with the folds that make a basic bird base. At the recent Atlassian Summit in Barcelona, we gave visitors to the Power Scripts booth an opportunity a chance to challenge our experts with something we called the 5-minute challenge. We asked users to come to us with a problem they were having trouble solving and the experts would solve the problem using Power Scripts in five minutes or less. Almost by accident, it was discovered that the majority of the solutions actually started out from the very same script base. We realized that this base was an important building block for many different types of scripts, much like a base fold in origami can be used to make many different types of animals. We are calling this script the loop base.

...

Code Block
string [] subtasks = subtasks(key);
for(string s in subtasks) {
	%s%.assignee = assignee;
}

We've encountered an issue exporting this macro. Please try exporting this page again later.