in reply to Re: Re: Re: Returning Values from Subroutines
in thread Returning Values from Subroutines

Well, as long as we're golfing:
#!/usr/local/bin/perl print add(1,2); sub add{ $_[0] + $_[1]; }

-- Dan