> Instant program migration: 
   > 
   > host-a:foo.pl:     print SOCKET dump;
   > 
   > host-b:bar.pl:     { local $/; eval <SOCKET> };

If domeone is putting this RFC together, please remember to propose
that C<eval> and C<do> should handle opcodes as well as source:

        host-a:foo.pl:  dump SOCKET;

        host-b:bar.pl:  { local $/; eval <SOCKET> };

Or:

        sub suspend { open $fh, ">$_[0]" or die; dump $fh }
        sub resume  { do $_[0] }

Damian

Reply via email to