master
Matthew Huntington 3 years ago
parent 513a994b51
commit 4a00ac4f86

@ -0,0 +1,13 @@
let id = 0;
for( let one = 0; one < 4; one++){
for( let two = 0; two < 4; two++){
for( let three = 0; three < 4; three++){
for( let four = 0; four < 4; four++){
for( let five = 0; five < 4; five++){
console.log(`${id}: ${one} ${two} ${three} ${four} ${five}`);
id++;
}
}
}
}
}
Loading…
Cancel
Save