print hello("world")."\n"; exit(0); sub hello { my ($passed_on_var) = @_; return('hello '.$passed_on_var); }