in reply to Re^2: Is this reliable way to cast from BOOL to NUMBER?
in thread Is this reliable?

Personally I'd get them to write an entirely different scripting language and then either write a parser/interpreter for that scripting language, or use an off the shelf one (like JE for Javascript).

package Cow { use Moo; has name => (is => 'lazy', default => sub { 'Mooington' }) } say Cow->new->name
  • Comment on Re^3: Is this reliable way to cast from BOOL to NUMBER?