Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
#!perl
use strict;
my @arr = (1..30);
my $rowspp = 10;
for (my $i=0; $i<@arr; $i++) {
print $arr[$i], "\n";
if (($i+1) % $rowspp == 0) {
if ($i+1 < @arr) {
print "--NEW PAGE--\n";
}
}
}
Example output:
1
2
3
4
5
6
7
8
9
10
--NEW PAGE--
11
12
13
14
15
16
17
18
19
20
--NEW PAGE--
21
22
23
24
25
26
27
28
29
30