in reply to Re^2: Functions (Return V Print)
in thread Functions (Return V Print)
#!/opt/perl/bin/perl use strict; use warnings; my $title="name"; print "$title\n"; $title = &function64("name"); print "$title\n"; sub function64 { my ($title) = @_; $title="$title " x 3; return ($title); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Functions (Return V Print)
by cjb (Friar) on Feb 04, 2011 at 11:22 UTC |