At 07:41 PM 3/21/2002 -0500, Dan Sugalski wrote: >On Thu, 21 Mar 2002, Melvin Smith wrote: > > > > clone Sx, sy > > > > I'm not seeing the difference between clone Sx, sy and set Sx, sy > > > > When I do: > > > > set S30, "PARROT" > > set S31, S30 > >Change this to > > clone S31, S30 > >and see what happens.
I did and I got the same results, hence my confusion. [msmith@linux parrot]$ ./parrot a.pbc PARR PARROT [msmith@linux parrot]$ ./parrot b.pbc PARR PARROT [msmith@linux parrot]$ diff -u a.pasm b.pasm --- a.pasm Thu Mar 21 21:01:08 2002 +++ b.pasm Thu Mar 21 20:58:43 2002 @@ -1,5 +1,5 @@ set S30, "PARROT" -set S31, S30 +clone S31, S30 chopn S30, 2 print S30 print "\n" -Melvin