aboutsummaryrefslogtreecommitdiff
path: root/challenge-098
diff options
context:
space:
mode:
authorPaulo Custodio <pauloscustodio@gmail.com>2021-02-10 23:35:53 +0000
committerPaulo Custodio <pauloscustodio@gmail.com>2021-02-11 21:49:58 +0000
commit405681844e7b386ae53eb97f88e58f3d0d090a62 (patch)
treed32aeec98a2ab9608451d0d893a008864d16e925 /challenge-098
parent6d58732cdd23a50220c754bdec2ddf3a505003e0 (diff)
downloadperlweeklychallenge-club-405681844e7b386ae53eb97f88e58f3d0d090a62.tar.gz
perlweeklychallenge-club-405681844e7b386ae53eb97f88e58f3d0d090a62.tar.bz2
perlweeklychallenge-club-405681844e7b386ae53eb97f88e58f3d0d090a62.zip
Add Awk solution to challenge 99
Diffstat (limited to 'challenge-098')
-rw-r--r--challenge-098/paulo-custodio/awk/ch-1.awk2
1 files changed, 1 insertions, 1 deletions
diff --git a/challenge-098/paulo-custodio/awk/ch-1.awk b/challenge-098/paulo-custodio/awk/ch-1.awk
index 51d8f3a8f6..4711a7babb 100644
--- a/challenge-098/paulo-custodio/awk/ch-1.awk
+++ b/challenge-098/paulo-custodio/awk/ch-1.awk
@@ -31,7 +31,7 @@ function readN(filename, read_len) {
BEGIN {
for (i = 1; i < ARGC - 1; i += 2) {
- text = readN(ARGV[i], ARGV[i+1]);
+ text = readN(ARGV[i], ARGV[i+1])
print text
}
exit 0