http://qs1969.pair.com?node_id=107047


in reply to shifting arguments

Just to note with what you are doing in that example, it would be much easier to just do something like:

sub encode_string($$$){ return join $delimiter,@_; }


$_.=($=+(6<<1));print(chr(my$a=$_));$^H=$_+$_;$_=$^H; print chr($_-39); # Easy but its ok.

Replies are listed 'Best First'.
Re: Re: shifting arguments
by dragonchild (Archbishop) on Aug 22, 2001 at 21:40 UTC
    Of course, the question arises of how you're getting $delimiter ...

    ------
    /me wants to be the brightest bulb in the chandelier!

    Vote paco for President!

      $delimiter happens to be a global variable that is shared between 2 subs (could be anything the user desires, but needs to be consistant)