Created
October 5, 2011 09:22
-
-
Save tokuhirom/1264009 to your computer and use it in GitHub Desktop.
around bug in Xslate
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl | |
use strict; | |
use warnings; | |
use utf8; | |
use 5.010000; | |
use Text::Xslate; | |
use Data::Section::Simple qw(get_data_section); | |
my $xslate = Text::Xslate->new( | |
path => [get_data_section()] | |
); | |
$xslate->render('Z'); | |
__DATA__ | |
@@ X | |
@@ Y | |
: cascade "X" | |
: around sugyan -> { | |
: } | |
@@ Z | |
: cascade "Y" | |
: around sugyan -> { | |
: } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment