aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMohammad S Anwar <Mohammad.Anwar@yahoo.com>2021-02-14 22:55:37 +0000
committerGitHub <noreply@github.com>2021-02-14 22:55:37 +0000
commitfc6eada673101323d4a34ad7138588326e84f04e (patch)
treed5e411d36ad23acb99369cb398f13c55a7093ba7
parentecd2ae6e8506d0fe76034f75c5b82662219d47c1 (diff)
parent4694189888e8fb85ba3d1d33ef35b4d859542240 (diff)
downloadperlweeklychallenge-club-fc6eada673101323d4a34ad7138588326e84f04e.tar.gz
perlweeklychallenge-club-fc6eada673101323d4a34ad7138588326e84f04e.tar.bz2
perlweeklychallenge-club-fc6eada673101323d4a34ad7138588326e84f04e.zip
Merge pull request #3520 from pauloscustodio/099
Missing exit.
-rw-r--r--challenge-004/paulo-custodio/awk/ch-1.awk1
1 files changed, 1 insertions, 0 deletions
diff --git a/challenge-004/paulo-custodio/awk/ch-1.awk b/challenge-004/paulo-custodio/awk/ch-1.awk
index 1121fe0fed..39d6077ebd 100644
--- a/challenge-004/paulo-custodio/awk/ch-1.awk
+++ b/challenge-004/paulo-custodio/awk/ch-1.awk
@@ -18,4 +18,5 @@ BEGIN {
}
pi = substr(pi, 1, size+1)
print pi;
+ exit 0;
}