Hi,
> Well, I'm trying insert a block into a series of blocks:
> Consider the following code:
> ;===============================
> triple: copy []
> insert/only triple [1 234]
> print mold triple
> insert/only head triple [2 234]
> print mold triple
> insert/only next triple [3 345]
> print mold triple
> insert/only triple/2 [4 456] ; I've done this wrong
> print mold triple
> ; == the results are:
> [[1 234]]
> [[2 234] [1 234]]
> [[2 234] [3 345] [1 234]]
> [[2 234] [[4 456] 3 345] [1 234]]
> ; what I'm really looking for at the last output line is:
> [[2 234] [4 456] [3 345] [1 234]]
> What should I do differently?
> Thanks
> -Tim
>
I think, that you wanted to do:
insert/only skip triple 1 [4 456]
or:
insert/only at triple 2 [4 456]
Regards
Ladislav