I am starting to learn Perl and I have coded few tools (converters, calculators, etc.) to get some practice, I easily included these tools into my website just changing the extension .pl to .cgi and adding this line:
print "content-type: text/html \n\n";
so..when should I start using catalyst and why? if the scripts I have coded so far work perfectly without using any web framework.
THANKS.