Lines Matching +full:17 +full:v
12 my $template = 'We will put value of $v (which is "good") here -> {$v}';
14 my $v = 'oops (main)';
15 $Q::v = 'oops (Q)';
17 my $vars = { 'v' => \'good' };
24 my $result2 = 'We will put value of $v (which is "good") here -> good';
29 is $v, 'oops (main)';
32 my $result4 = 'We will put value of $v (which is "good") here -> good';
37 my $result5 = 'We will put value of $v (which is "good") here -> good';
42 is $Q::v, 'good';
45 my $result7 = 'We will put value of $v (which is "good") here -> good';
55 … my $template8 = 'We will put value of $v (which is "good") here -> {defined $v ? "bad" : "good"}';
56 my $result8 = 'We will put value of $v (which is "good") here -> good';
58 my $text = $template->fill_in(HASH => { 'v' => undef });
68 $text = $template->fill_in(HASH => [ { 'v' => 17 }, { 'v' => undef } ]);
82 $text = Text::Template::fill_in_string(q{$v: {$v}. @v: [{"@v"}].},
84 { 'v' => 17 },
85 { 'v' => [ 'a', 'b', 'c' ] },
86 { 'v' => \23 }
90 my $result = q{$v: 23. @v: [a b c].};