The strict Pragma and Words
If your program disobeys the restrictions placed on it, it won't compile.
#!/usr/bin/perl
# Program: stricts.test
# Script to demonstrate the strict pragma
use strict "subs";
$name = SS; # Unquoted word
print "Hi $name.\n";
Related examples in the same category