http://www.perlmonks.org?node_id=1024961


in reply to Re^2: poll ideas quest 2013
in thread poll ideas quest 2013

I once wrote PHP which generated ASP+VBScript code as output. These PHP scripts were run through the PHP command-line client (not Apache mod_php) which was called from a Perl script, triggered by cron.

String escaping was... err... "fun".

package Cow { use Moo; has name => (is => 'lazy', default => sub { 'Mooington' }) } say Cow->new->name