diff options
| author | E. Choroba <choroba@matfyz.cz> | 2020-01-31 23:03:15 +0100 |
|---|---|---|
| committer | E. Choroba <choroba@matfyz.cz> | 2020-01-31 23:03:15 +0100 |
| commit | 27106242cd5071be0de85adbe4e3626d7ac617fc (patch) | |
| tree | f1cf0e313ced3606d7014f075a1bbf805e0c86e1 | |
| parent | d094e986802beac5ebd557008a31d8a8032093b5 (diff) | |
| download | perlweeklychallenge-club-27106242cd5071be0de85adbe4e3626d7ac617fc.tar.gz perlweeklychallenge-club-27106242cd5071be0de85adbe4e3626d7ac617fc.tar.bz2 perlweeklychallenge-club-27106242cd5071be0de85adbe4e3626d7ac617fc.zip | |
Add a link to E. Choroba's blog about 045
Also, shorten one of the solutions.
| -rw-r--r-- | challenge-045/e-choroba/blog.txt | 1 | ||||
| -rwxr-xr-x | challenge-045/e-choroba/perl/ch-2a.pl | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/challenge-045/e-choroba/blog.txt b/challenge-045/e-choroba/blog.txt new file mode 100644 index 0000000000..42c7eaae3f --- /dev/null +++ b/challenge-045/e-choroba/blog.txt @@ -0,0 +1 @@ +http://blogs.perl.org/users/e_choroba/2020/01/perl-weekly-challenge-045-square-secret-code-source-dumper.html diff --git a/challenge-045/e-choroba/perl/ch-2a.pl b/challenge-045/e-choroba/perl/ch-2a.pl index a98ab5bf84..93f8ad483c 100755 --- a/challenge-045/e-choroba/perl/ch-2a.pl +++ b/challenge-045/e-choroba/perl/ch-2a.pl @@ -3,6 +3,6 @@ use warnings; use strict; seek *DATA, 0 , 0; -print while <DATA>; +print <DATA>; __DATA__ |
