...
Code Block | ||||
---|---|---|---|---|
| ||||
sub do { shift; $command = shift; $command =~ /([\w])/; $command = $1; $do_call = "xmms -" . $command; system $do_call; return $do_call; } |
Note that this code still violates DCL31-PL. Do not overload reserved keywords or subroutines; it is shown here for historical accuracy.
Risk Assessment
Using deprecated or obsolete classes or methods in program code can lead to erroneous behavior.
...