On Thu Jun 28 09:52:22 2012, sisar wrote: > $ perl6 --version > This is perl6 version 2012.06-41-g88a9d69 built on parrot 4.5.0 > revision RELEASE_4_5_0 > > In Rakudo's REPL: > > >print 'a'.WHAT; > use of uninitialized variable $v of type Str in string context > True > > > > The part about "$v" is a bug. It should just be > "use of uninitialized value of type Str in string context"
This now behaves: $ ./perl6-m > print 'a'.WHAT; use of uninitialized value of type Str in string context True Closable with tests. -- Will "Coke" Coleda