Perl - Using conditionals (first part)
15 Dec 2022 2 minute read 0 comments lingy
We finally come to the use of conditionals in Perl (the famous if and else). If conditional The basic if structure is like this: if (condition) { say "The condition is true"; } This code means that, if the expression in the condition is true, the...