in reply to Re: IYHO, what do you consider good code?
in thread IYHO, what do you consider good code?
If your subroutine were something like this:
sub get_build_from_server { my ($server_name,$password,$path_to_build) = @_; # do stuff here my $success = parse_build_name($path_to_build); if ($success) {return 0;} else { return 1; } }
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: Re: IYHO, what do you consider good code?
by logan (Curate) on Jun 13, 2003 at 16:31 UTC | |
by adrianh (Chancellor) on Jun 15, 2003 at 00:08 UTC |