App: sequence Page: keepRemoveFlag/newmanConway
| HTML |
RESULT |
{sequence 25, push='mySequence'}
| |
{pull mySequence, make, newmanConway} {$sequence} {/pull}
| 1 1 2 2 3 4 4 4 5 6 7 7 8 8 8 8 9 10 11 12 12 13 14 14 15 |
{pull mySequence, keep, newmanConway} {$sequence} {/pull}
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
{pull mySequence, remove, newmanConway} {$sequence} {/pull}
| |
{pull mySequence, flag, newmanConway} {$sequence} {/pull}
| 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 |
App: sequence Page: play/single/newmanConway
| HTML |
RESULT |
{sequence even, rows=5} {$sequence} {/sequence}
| 2 4 6 8 10 |
{sequence newmanConway, rows=10} {$sequence} {/sequence}
| 1 1 2 2 3 4 4 4 5 6 |
{sequence even, newmanConway, rows=5} {$sequence} {/sequence}
| 1 2 4 4 6 |
|