Skip to content

Instantly share code, notes, and snippets.

@k1LoW
Last active August 29, 2015 13:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save k1LoW/8957714 to your computer and use it in GitHub Desktop.
Save k1LoW/8957714 to your computer and use it in GitHub Desktop.
function (__structure outputStructure) main (
__number inputNumber,
__number FillIndex,
__boolean Fill,
__number ClearIndex,
__boolean Clear,
__number Iterations)
{
Object.Queue = (Object.Queue) ? Object.Queue : new Array(Iterations);
var result = new Object();
if (Fill) {
Object.Queue[FillIndex] = inputNumber;
}
if (Clear) {
Object.Queue[ClearIndex] = 0;
}
result.outputStructure = Object.Queue;
return result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment