diff options
| author | Mohammad S Anwar <Mohammad.Anwar@yahoo.com> | 2020-02-01 18:26:00 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-01 18:26:00 +0000 |
| commit | ad3024b285203aa081811d6cdda8022ff3071420 (patch) | |
| tree | f1cf0e313ced3606d7014f075a1bbf805e0c86e1 | |
| parent | d094e986802beac5ebd557008a31d8a8032093b5 (diff) | |
| parent | 27106242cd5071be0de85adbe4e3626d7ac617fc (diff) | |
| download | perlweeklychallenge-club-ad3024b285203aa081811d6cdda8022ff3071420.tar.gz perlweeklychallenge-club-ad3024b285203aa081811d6cdda8022ff3071420.tar.bz2 perlweeklychallenge-club-ad3024b285203aa081811d6cdda8022ff3071420.zip | |
Merge pull request #1190 from choroba/ech045b
Add a link to E. Choroba's blog about 045
| -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__ |
