The last two days, in Perl:

$sleep_type=FULL_OF_WEIRD_DREAMS;
$body{'today'}=$body{'yesterday'}+$sleep{$sleep_type};

$body=~s/(legs|arms|brain|ability)/wood/g;

Tomorrow will be better... ;-)
<--break-->

Submitted by coofercat on Fri, 2004-02-20 03:45

Comments

The last two days, in Perl:

10 PRINT ":)"
20 GOTO 10

Submitted by robert (not verified) on Sun, 2004-02-22 01:15.
The last two days, in Perl:

The sharp eyed might well notice it should of course read:

$body{'today'}=$body{'yesterday'} . $sleep{$sleep_type};

...and...

$body{'today'}=~s/(legs|arms|brain|ability)/wood/g;

...and probably shouldn't exist at all, given that I made it all up.

Submitted by coofercat on Mon, 2004-02-23 00:37.