in reply to What's the best way to put perl code in config file?

'Actions'=> [ "print \"hello world\";", ]
I'd suggest using anonymous subs:
'Actions'=> sub { print "hello world"; ...; }

Dave.