diff options
Diffstat (limited to 'challenge-045/e-choroba/perl/ch-2a.pl')
| -rwxr-xr-x | challenge-045/e-choroba/perl/ch-2a.pl | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/challenge-045/e-choroba/perl/ch-2a.pl b/challenge-045/e-choroba/perl/ch-2a.pl new file mode 100755 index 0000000000..a98ab5bf84 --- /dev/null +++ b/challenge-045/e-choroba/perl/ch-2a.pl @@ -0,0 +1,8 @@ +#!/usr/bin/perl +use warnings; +use strict; + +seek *DATA, 0 , 0; +print while <DATA>; +__DATA__ + |
