Re: range problems

2020-01-28 Thread Trey Harris
On Tue, Jan 28, 2020 at 08:27 Trey Harris wrote: > On Mon, Jan 27, 2020 at 23:57 ToddAndMargo via perl6-users < > perl6-us...@perl.org> wrote: > >> Hi Al, >> >> Now what am I doing wrong? >> >> > my Int $u = 0xF8; say $u.Range; >> >> Invocant of method 'Range' must be a type object of >> type 'I

Re: range problems

2020-01-28 Thread Trey Harris
On Mon, Jan 27, 2020 at 23:57 ToddAndMargo via perl6-users < perl6-us...@perl.org> wrote: > Hi Al, > > Now what am I doing wrong? > > > my Int $u = 0xF8; say $u.Range; > > Invocant of method 'Range' must be a type object of > type 'Int', not an object instance of type 'Int'. > Did you forget a 'm

range problems

2020-01-27 Thread ToddAndMargo via perl6-users
Hi Al, Now what am I doing wrong? > my Int $u = 0xF8; say $u.Range; Invocant of method 'Range' must be a type object of type 'Int', not an object instance of type 'Int'. Did you forget a 'multi'? When is an Int not an Int? Perplexed, -T