• Howdy! Welcome to our community of more than 130.000 members devoted to web hosting. This is a great place to get special offers from web hosts and post your own requests or ads. To start posting sign up here. Cheers! /Peo, FreeWebSpace.net
managed wordpress hosting

adding sub routines to perl

Code:
sub subroutineName
{
	my($argument_a, $argument_b) = @_;

	# where $argument_a & b are just things you pass
	# the subroutine like &subrotineName("stuff","joe");

}

mjk@atlascgi.com
 
I use

Code:
&subroutineName("arg1","arg2");
but
subroutineName("arg1","arg2");
will work too

mjk@atlascgi.com
 
Back
Top