Help for this page

Select Code to Download


  1. or download this
        move $obj->{FIELD};                 # probably wrong!
        move $ary[$i];                      # probably wrong!
    
  2. or download this
        $obj->move->{FIELD};                # Well, lookee here
        $ary->move->[$i];                   # Didn't expect this one, eh?
    
  3. or download this
        $obj->{FIELD}->move();              # You should be so lucky.
        $ary[$i]->move;                     # Yeah, sure.