aboutsummaryrefslogtreecommitdiff
path: root/challenge-108
diff options
context:
space:
mode:
authorPaulo Custodio <pauloscustodio@gmail.com>2021-06-07 20:34:04 +0100
committerPaulo Custodio <pauloscustodio@gmail.com>2021-06-07 20:34:04 +0100
commitcbe3668fd46f9244396c587fb755f2ca983316d8 (patch)
treee00d36d63a5621bc3d8101cb5ea8d32bfc3ef61e /challenge-108
parent4830b1d50fd610eb2424fe284cb48a2795e0478c (diff)
downloadperlweeklychallenge-club-cbe3668fd46f9244396c587fb755f2ca983316d8.tar.gz
perlweeklychallenge-club-cbe3668fd46f9244396c587fb755f2ca983316d8.tar.bz2
perlweeklychallenge-club-cbe3668fd46f9244396c587fb755f2ca983316d8.zip
Add Perl solutions to challenges 114,115 and 116
Diffstat (limited to 'challenge-108')
-rwxr-xr-x[-rw-r--r--]challenge-108/paulo-custodio/perl/ch-1.pl6
-rwxr-xr-x[-rw-r--r--]challenge-108/paulo-custodio/perl/ch-2.pl4
-rwxr-xr-x[-rw-r--r--]challenge-108/paulo-custodio/test.pl2
3 files changed, 6 insertions, 6 deletions
diff --git a/challenge-108/paulo-custodio/perl/ch-1.pl b/challenge-108/paulo-custodio/perl/ch-1.pl
index 333532278a..87e7548d1b 100644..100755
--- a/challenge-108/paulo-custodio/perl/ch-1.pl
+++ b/challenge-108/paulo-custodio/perl/ch-1.pl
@@ -1,11 +1,11 @@
-#!/usr/bin/perl
+#!/usr/bin/env perl
# Challenge 108
#
-# TASK #1 › Locate Memory
+# TASK #1 - Locate Memory
# Submitted by: Mohammad S Anwar
#
-# Write a script to declare a variable or constant and print it’s location in
+# Write a script to declare a variable or constant and print it's location in
# the memory.
use Modern::Perl;
diff --git a/challenge-108/paulo-custodio/perl/ch-2.pl b/challenge-108/paulo-custodio/perl/ch-2.pl
index d76209a4e8..c709a3010b 100644..100755
--- a/challenge-108/paulo-custodio/perl/ch-2.pl
+++ b/challenge-108/paulo-custodio/perl/ch-2.pl
@@ -1,8 +1,8 @@
-#!/usr/bin/perl
+#!/usr/bin/env perl
# Challenge 108
#
-# TASK #2 › Bell Numbers
+# TASK #2 - Bell Numbers
# Submitted by: Mohammad S Anwar
#
# Write a script to display top 10 Bell Numbers. Please refer to wikipedia page
diff --git a/challenge-108/paulo-custodio/test.pl b/challenge-108/paulo-custodio/test.pl
index 01ed2b83cd..cf1ced98e0 100644..100755
--- a/challenge-108/paulo-custodio/test.pl
+++ b/challenge-108/paulo-custodio/test.pl
@@ -1,4 +1,4 @@
-#!/usr/bin/perl
+#!/usr/bin/env perl
use strict;
use warnings;