To install Perl on Windows 10, I went to perl.org and followed the links to get to the Windows Binaries, where I clicked a link to download ActivePerl. The name of the file that was downloaded was ‘ActivePerl-5.24.3.2404-MSWin32-x64-404865.exe’. Then I installed Perl by clicking the .exe. Note: On one of the installation screens I chose … Continue reading How to install Perl and confirm the installation
Perl
Python and Perl: A comparison of the language basics
In this table I will compare some basic programming syntax and conventions between the Python and Perl programming languages. Programming element Python Perl Creating a variable that contains an int: age = 25 %age = 25; Creating a variable that contains a float: probability = 0.62 %probability = 0.62; Creating a variable that contains a … Continue reading Python and Perl: A comparison of the language basics