sub self($) { $world = shift; return ++$world; }

Replies are listed 'Best First'.
Re: Make the world better than you found it.
by Anonymous Monk on Dec 06, 2025 at 08:01 UTC
    Although that just creates a better copy of the world. One needs to modify @_ to make the existing world better.

    ;-)

Re: Make the world better than you found it. :)
by Anonymous Monk on Sep 11, 2014 at 06:43 UTC
    while( $self ){ make( $world , 'better' ); sleep 32400; } sub make { $_[0] .= ' '. $_[1]; }
      Its been forever since ive been here and i love
Re: Make the world better than you found it.
by stevieb (Canon) on Dec 06, 2025 at 16:17 UTC
    sub self($) { $world = shift; my $better_world = _assassinate_all_greedy_and_power_hungry_people +($world); return $better_world; }