1Text::Xslate::PP(3pm) User Contributed Perl DocumentationText::Xslate::PP(3pm)
2
3
4
6 Text::Xslate::PP - Yet another Text::Xslate runtime in pure Perl
7
9 This document describes Text::Xslate::PP version v3.5.9.
10
12 This module implements a Text::Xslate runtime engine in pure Perl.
13 Normally it will be loaded if it fails to load XS. So you do not need
14 to use this module explicitly.
15
16 # Text::Xslate loads PP if needed
17 use Text::Xslate;
18 my $tx = Text::Xslate->new();
19
20 If you want to use Text::Xslate::PP, however, you can use it.
21
22 use Text::Xslate::PP;
23 my $tx = Text::Xslate->new();
24
25 XS/PP mode might be switched with "$ENV{XSLATE} = 'pp' or 'xs'".
26
27 "$ENV{XSLATE} = 'pp=verbose' }" may be useful for debugging.
28
30 Text::Xslate
31
32 Text::Xslate::PP::Opcode
33
35 Text::Xslate::PP stuff is originally written by Makamaka Hannyaharamitu
36 <makamaka at cpan.org>, and also maintained by Fuji, Goro (gfx).
37
39 Copyright (c) 2010 by Makamaka Hannyaharamitu (makamaka).
40
41 This library is free software; you can redistribute it and/or modify it
42 under the same terms as Perl itself.
43
44
45
46perl v5.38.0 2023-07-21 Text::Xslate::PP(3pm)