On Wed Jul 30 22:53:30 2008, masak wrote: > $ svn info | grep vi > Revision: 29902 > > $ ./perl6 -e 'enum Weekday<Monday Tuesday>; say Monday' # works > 0 > $ ./perl6 -e 'enum Weekday<Monday Tuesday>; say Monday.perl' # doesn't > Method 'perl' not found for invocant of class '' > [...] > > I'm not entirely clear on what I expected to get from the .perl > method, but I expected it to be there.
Now prints Weekday::Monday, per spec, and there's a passing test in S12-enums/basic.t. Thanks, Jonathan