You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
279 B
Perl

#!/usr/bin/perl -w
use strict;
oneMethod(1,2,3);
sub oneMethod {
print "In oneMethod, arguments are @_\n";
anotherMethod(4,5,6);
print "Back in oneMethod, arguments are @_\n";
}
sub anotherMethod {
print "In anotherMethod, arguments are @_\n";
}