in reply to Re: "Called to early to check prototype"
in thread "Called to early to check prototype"
#!/usr/bin/perl use strict; # subroutines --------------- sub abc($$); # abc() does x,y,z # main() -------------------- ... # subroutines --------------- sub abc($$) { # abc() does x,y,z # inputs: ... # returns: ... # function code here }
|
|---|