Intersecting number wheels: Difference between revisions

→‎{{header|Quackery}}: Added note about extending the concept.
No edit summary
(→‎{{header|Quackery}}: Added note about extending the concept.)
Line 1,900:
 
=={{header|Quackery}}==
 
As the contents of a wheel (e.g. <code>[ 1 B 2 ]</code>) is just Quackery code, wheels can be extended in interesting ways.
 
They could, for example, contain a nest that randomly selects a wheel to advance; <code>[ 1 [ 2 random table [ B C ] ] 2 ]</code> would do the same as <code>[ 1 B 2 ]</code>, except that on the second click of the wheel, instead of always advancing wheel <code>B</code>, either wheel <code>B</code> or wheel <code>C</code> would advance.
 
<lang Quackery> [ ]this[ ]done[
1,462

edits