File: execprint.htm

package info (click to toggle)
libembperl-perl 2.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 5,324 kB
  • ctags: 2,843
  • sloc: ansic: 21,163; perl: 12,118; cpp: 467; makefile: 93; xml: 49; sh: 24
file content (45 lines) | stat: -rw-r--r-- 617 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[- 
print OUT "*" ;
Execute ('EmbperlObject/epohead.htm') ;
print OUT "*" ;
-]

without print...

[$foreach $i (1..3) $]
[- 
Execute ('EmbperlObject/epohead.htm') ;
-]
[$endforeach$]

without print...

[$foreach $i (1..3) $]
### [+ $i +] 
[- 
Execute ('EmbperlObject/epohead.htm') ;
-]
###
[$endforeach$]



with print in different blocks ...

[$foreach $i (1..3) $]
[- print OUT "* $i *" ; -]
[- Execute ('EmbperlObject/epohead.htm') ; -]
[- print OUT "*" ; -]
[$endforeach$]


with print...

[$foreach $i (1..3) $]
[- 
print OUT "* $i *" ;
Execute ('EmbperlObject/epohead.htm') ;
print OUT "*" ;
-]
[$endforeach$]