ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Games-Go-SGF-Grove/Grove.pm
(Generate patch)

Comparing Games-Go-SGF-Grove/Grove.pm (file contents):
Revision 1.12 by elmex, Mon Jul 21 19:23:43 2008 UTC vs.
Revision 1.13 by elmex, Mon Jul 21 19:24:15 2008 UTC

485 }, 485 },
486 ); 486 );
487 } elsif (s/real//) { 487 } elsif (s/real//) {
488 return ( 488 return (
489 sub { 489 sub {
490 $_[1] 490 $_[1]+0
491 }, 491 },
492 sub { 492 sub {
493 $_[1]+0 493 $_[1]+0
494 }, 494 },
495 ); 495 );
496 } elsif (s/number//) { 496 } elsif (s/number//) {
497 return ( 497 return (
498 sub { 498 sub {
499 $_[1] 499 $_[1]+0
500 }, 500 },
501 sub { 501 sub {
502 int $_[1] 502 int $_[1]
503 }, 503 },
504 ); 504 );

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines