Elements

Aliquam ut ex ut interdum donec amet imperdiet eleifend


Example

Discription


Preformatted
i = 0;

while (!deck.isInOrder()) {
  print 'Iteration ' + i;
  deck.shuffle();
  i++;
}

print 'It took ' + i + ' iterations to sort the deck.';