On Fri, Dec 13, 2019 at 6:48 AM Todd Chester via perl6-users <
perl6-us...@perl.org> wrote:

> On 2019-12-12 00:22, Fernando Santagata wrote:
> > On Thu, Dec 12, 2019 at 3:46 AM Todd Chester <toddandma...@zoho.com
> > <mailto:toddandma...@zoho.com>> wrote:
>
> Can I export any other variable and constants the same way:
>
>       my $pi = 4.13 is export;
>
> -T
>

Not like that. A "my" variable cannot be exported and the syntax is
slightly wrong.
Try:

our $pi is export = 4.13;

-- 
Fernando Santagata

Reply via email to