diff options
| author | Abigail <abigail@abigail.be> | 2021-10-13 18:10:23 +0200 |
|---|---|---|
| committer | Abigail <abigail@abigail.be> | 2021-10-13 18:10:23 +0200 |
| commit | fcb5472cede9b5bbdb0feae8e7af15089f24a53c (patch) | |
| tree | 9e823aa51d5b53154c69c68933211a33591534bd /challenge-134/abigail/php | |
| parent | a5afda49c3ec8936ff080bca14ce598552b2a5c7 (diff) | |
| download | perlweeklychallenge-club-fcb5472cede9b5bbdb0feae8e7af15089f24a53c.tar.gz perlweeklychallenge-club-fcb5472cede9b5bbdb0feae8e7af15089f24a53c.tar.bz2 perlweeklychallenge-club-fcb5472cede9b5bbdb0feae8e7af15089f24a53c.zip | |
PHP solution for week 134
Diffstat (limited to 'challenge-134/abigail/php')
| -rw-r--r-- | challenge-134/abigail/php/ch-1.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/challenge-134/abigail/php/ch-1.php b/challenge-134/abigail/php/ch-1.php new file mode 100644 index 0000000000..2df5731b91 --- /dev/null +++ b/challenge-134/abigail/php/ch-1.php @@ -0,0 +1,14 @@ +<?php + // + // See ../README.md + // + + // + // Run as: php ch-1.php + // + $tails = array (789, 798, 879, 897, 978); + + foreach ($tails as &$tail) { + echo "1023456$tail\n"; + } +?> |
