On Fri, Dec 13, 2019 at 6:48 AM Todd Chester via perl6-users < [email protected]> wrote:
> On 2019-12-12 00:22, Fernando Santagata wrote: > > On Thu, Dec 12, 2019 at 3:46 AM Todd Chester <[email protected] > > <mailto:[email protected]>> 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
