- or download this
;; # A comment preceded by two null statements ... why?
- or download this
while (condition) {
...
...
print "Error message\n";
}
}
- or download this
while (condition) {
...
...
of
code
}
- or download this
if (condition) {
some code that
...
else {
code you do at other times
}
- or download this
if (condition) {
some code that
...
}
# Now that we have the special cases out of the way...
code you do at other times
- or download this
#!/usr/bin/perl
# IBM Message Queue Reader
...
sub LOG {
print (localtime) . " - " . $msg . ".\n";
}