From 4694189888e8fb85ba3d1d33ef35b4d859542240 Mon Sep 17 00:00:00 2001 From: Paulo Custodio Date: Sun, 14 Feb 2021 22:02:10 +0000 Subject: Missing exit. --- challenge-004/paulo-custodio/awk/ch-1.awk | 1 + 1 file changed, 1 insertion(+) 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; } -- cgit