3 dep() => deprecate("\"do\" to call subroutines")
4 Use of "do" to call subroutines is deprecated
8 sub fred {} $a = "fred" ; do $a()
9 sub fred {} $a = "fred" ; do $a(1)
14 use warnings 'deprecated' ;
21 no warnings 'deprecated' ;
28 Use of "do" to call subroutines is deprecated at - line 4.
29 Use of "do" to call subroutines is deprecated at - line 5.
30 Use of "do" to call subroutines is deprecated at - line 7.
31 Use of "do" to call subroutines is deprecated at - line 8.