NAME Acme::Tie::Map - Ties a function to a scalar REQUIREMENTS Only standard modules are used. SYNOPSIS use Acme::Tie::Map; sub quote { my $t = shift; return "``$t\'\'"; } tie $x, 'Acme::Tie::Map', \"e; $t = "some text"; print $t; # outputs ``some text'' DESCRIPTION This is an experimental module to apply a function to a scalar. AUTHOR Robert Rothenberg LICENSE This module is in the public domain. No copyright is claimed.