The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Syntax::Feature::RawQuote - A raw quote operator for Perl ('use syntax' flavor)

SYNOPSIS

    use syntax 'raw_quote';
    say r`I keep all of my files in \\yourserver\private`;

    use syntax raw_quote => { -as => "qraw" };
    say qraw[Maybe the \r\ keyword is too risky?];

DESCRIPTION

This library provides an interface to Syntax::Keyword::RawQuote for the syntax module. You may also see Syntax::Keyword::RawQuote directly. See that module for more information.

WARNING

This is beta software that mucks about with the perl internals. Do not use it for anything too important.

METHODS

install

Called by syntax to enable the module when you do use syntax 'raw_quote'.

uninstall

Called by syntax to disable the module when you do no syntax 'raw_quote'.

AUTHOR

Andrew Rodland <arodland@cpan.org>

LICENSE

Copyright (c) Andrew Rodland.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.