in reply to Re^2: CGI Action call
in thread CGI Action call
Or shift it like this:
#!/usr/bin/env perl use strict; use warnings; use feature qw(say); use JSON::Tiny qw(encode_json); my %hash = ( foo => 'bar', nose => 'cuke' ); say completeResultHash( \%hash ); sub completeResultHash { encode_json(shift); } __END__
Regards, Karl
«The Crux of the Biscuit is the Apostrophe»
perl -MCrypt::CBC -E 'say Crypt::CBC->new(-key=>'kgb',-cipher=>"Blowfish")->decrypt_hex($ENV{KARL});'Help
|
|---|