Perl Weekly Challenge W024 - Smallest Script, Inverted Index
I've been doing the Perl Weekly Challenge (PWC) for 3 weeks now. So far there's been unique challenges that made me utilize different modules. I even submitted a solution using APIs which I haven't done in my work because I didn't have any reason to. (lol)
If you'd like to join the fun and contribute, please visit the site link managed by Mohammad S Anwar.
Task #1 - Smallest Script: The tasks for this week's challenge (#24) are a bit confusing at first but I just did what was asked. The first task was to create the smallest script as described below:Create a smallest script in terms of size that on execution doesn’t throw any error. The script doesn’t have to do anything special. You could even come up with smallest one-liner.There is no problem to solve, so in my entry I just put a
$%
:
perl -e '$%'


