http://qs321.pair.com?node_id=123986


in reply to Re: My program it doesn't work could you tell me my mistakes?
in thread My program it doesn't work could you tell me my mistakes?

Since I almost tripped myself up on this yesterday...

When someone posts code w/o code tags, things like '<STDIN>' tend to get parsed out as invalid html tags. That's why you'll see things like

$input = ;
</code> It was actually entered as:
$input = <STDIN>;
but got munged along the way.

-Blake