Skip to content

Instantly share code, notes, and snippets.

@cybersonic
Created October 14, 2013 15:51
Show Gist options
  • Select an option

  • Save cybersonic/6977826 to your computer and use it in GitHub Desktop.

Select an option

Save cybersonic/6977826 to your computer and use it in GitHub Desktop.
<cfscript>
Items = [];
outer:for(i=1;i<10;i++){
Stuff = ":";
inner:for(x=1;x<3;x++){
if(i IS 5){
continue outer;
}
if(i IS 8){
break outer;
}
Stuff &= x;
}
Items.append(i & Stuff);
}
dump(Items);
</cfscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment