The following two lines of Perl 6 causes the compiler to recurse infinitely, which shows off Perl 5's recursion detection quite nicely :)
my $x = 1;
$x = +$x;
--
Aaron Sherman <[EMAIL PROTECTED]>
http://www.ajs.com/~ajs
The following two lines of Perl 6 causes the compiler to recurse infinitely, which shows off Perl 5's recursion detection quite nicely :)
my $x = 1;
$x = +$x;
--
Aaron Sherman <[EMAIL PROTECTED]>
http://www.ajs.com/~ajs