Re: square root question

2019-12-14 Thread ToddAndMargo via perl6-users
On 2019-12-14 18:43, Tobias Boege wrote: On Sat, 14 Dec 2019, ToddAndMargo via perl6-users wrote: Hi All, Am I pushing it with the unicodes here? say 2.√ ===SORRY!=== Error while compiling: Malformed postfix call --> say 2.⏏√ √ is not a valid identifier character, so this can't be a met

square root question

2019-12-14 Thread ToddAndMargo via perl6-users
Hi All, Am I pushing it with the unicodes here? say sqrt(2) 1.4142135623730951 say 2.sqrt 1.4142135623730951 say ½*2.sqrt 0.7071067811865476 say 2.√ ===SORRY!=== Error while compiling: Malformed postfix call --> say 2.⏏√ say √2 ===SORRY!=== Argument to "say" seems to be malformed --

Re: Cannot invoke this object (REPR: Null; VMNull)

2019-12-14 Thread Simon Proctor
I saw this issue when I was building Trait::Env, the closest I got to figuring it out was closure's in phasers in modules seem to get lost in the compilation process. But I never figured out a solution I'm afraid. On Sat, 14 Dec 2019, 22:35 Paul Procacci, wrote: > Ladies/Gents, > > I'm perplexe

Cannot invoke this object (REPR: Null; VMNull)

2019-12-14 Thread Paul Procacci
Ladies/Gents, I'm perplexed by the error message as stated in the subject. It's quite possible I'm doing it wrong. What I'm attempting to do is create an attribute of a class that is a Map ... who's value is known at compile time; hence the CHECK phaser. To produce the error it requires two sourc