[back] [prev] [next] [index] [root]
b := MultiCounterInc(L, n);
boolean | b |
|
list | L |
|
integer | list | n |
See also: MultiCounterInit
kash> L := MultiCounterInit(2);; kash> while MultiCounterInc(L, 2) do > Print(L, " "); > od; Print("\n");[ 0, 0 ] [ 1, 0 ] [ 2, 0 ] [ 0, 1 ] [ 1, 1 ] [ 2, 1 ] [ 0, 2 ] [ 1, 2 ] [ 2, 2 ] >
<- back[back] [prev] [next] [index] [root]