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.
Michael Reber b880c3ccde Initial commit 4 years ago
..
A closure is an anonymous subroutine.pl Initial commit 4 years ago
A nested subroutine.pl Initial commit 4 years ago
A recursive subroutine to perform arithmetic.pl Initial commit 4 years ago
A subroutine is defined by the sub keyword and the block of code that follows.pl Initial commit 4 years ago
A subroutine that returns a scalar or a list.pl Initial commit 4 years ago
A subroutine that returns a value.pl Initial commit 4 years ago
Accessing variables in subroutines.pl Initial commit 4 years ago
Adding two arrays in a subroutine.pl Initial commit 4 years ago
Ading two arrays together.pl Initial commit 4 years ago
Anonymous Subroutines.pl Initial commit 4 years ago
Anonymous functions.pl Initial commit 4 years ago
BEGIN and END Subroutines (Startup and Finish).pl Initial commit 4 years ago
Call a subroutine and use it.pl Initial commit 4 years ago
Call a subroutine through its reference.pl Initial commit 4 years ago
Call a subroutine without defining it.pl Initial commit 4 years ago
Call sub.pl Initial commit 4 years ago
Call subroutine with parameter by using its reference.pl Initial commit 4 years ago
Call the subroutine with $number.pl Initial commit 4 years ago
Calling a sub routine with &.pl Initial commit 4 years ago
Calling a sub routine with 'subroutine_name();'.pl Initial commit 4 years ago
Calling function in print statement.pl Initial commit 4 years ago
Calling subroutines that are not defined before use.pl Initial commit 4 years ago
Check the prototype.pl Initial commit 4 years ago
Closure in action.pl Initial commit 4 years ago
Context and Subroutines.pl Initial commit 4 years ago
Create a subroutine.pl Initial commit 4 years ago
Declaration with prototype.pl Initial commit 4 years ago
Define local variable in subroutine by using my.pl Initial commit 4 years ago
Define subroutine and call it with using global variable.pl Initial commit 4 years ago
Define subroutine prototype.pl Initial commit 4 years ago
Define subroutine then use it.pl Initial commit 4 years ago
Difference between my and local.pl Initial commit 4 years ago
Duplicate global and local variable name (use strict;).pl Initial commit 4 years ago
Is a parameter defined.pl Initial commit 4 years ago
Local variable shadows the gloabl variable.pl Initial commit 4 years ago
Local variable shadows the global variable in a subroutine.pl Initial commit 4 years ago
Local variables in subroutines.pl Initial commit 4 years ago
My value scope.pl Initial commit 4 years ago
Nested method.pl Initial commit 4 years ago
Nested subroutine with local variable.pl Initial commit 4 years ago
Pass file handle global reference to a subroutine.pl Initial commit 4 years ago
Pass reference to a subroutine to another subroutine.pl Initial commit 4 years ago
Pass two array reference to a subroutine.pl Initial commit 4 years ago
Passing Arrays.pl Initial commit 4 years ago
Passing References to a Subroutine.pl Initial commit 4 years ago
Passing a range of value to a subroutine.pl Initial commit 4 years ago
Passing an array and modifying it,as a reference.pl Initial commit 4 years ago
Passing array to a subroutine.pl Initial commit 4 years ago
Passing arrays to a function.pl Initial commit 4 years ago
Passing by reference with pointers.pl Initial commit 4 years ago
Passing different number of parameter to a subroutine.pl Initial commit 4 years ago
Passing hash to a subroutine.pl Initial commit 4 years ago
Passing parameters to subroutines.pl Initial commit 4 years ago
Passing two values to a subroutine.pl Initial commit 4 years ago
Prototypes.pl Initial commit 4 years ago
Recursive factorial subroutine.pl Initial commit 4 years ago
Recursive fibonacci function.pl Initial commit 4 years ago
Recursive subroutine.pl Initial commit 4 years ago
References to subroutines.pl Initial commit 4 years ago
Return Value.pl Initial commit 4 years ago
Return a reference from a sub.pl Initial commit 4 years ago
Return a subroutine from a subroutine.pl Initial commit 4 years ago
Return hash value from subroutine.pl Initial commit 4 years ago
Return more than one value from subroutine.pl Initial commit 4 years ago
Return reference from a function.pl Initial commit 4 years ago
Return reference to variable.pl Initial commit 4 years ago
Return two array references from a subroutine.pl Initial commit 4 years ago
Return two arrays from subroutine.pl Initial commit 4 years ago
Return value based on context.pl Initial commit 4 years ago
Return value from subroutine reference.pl Initial commit 4 years ago
Return value from subroutine without using the return statement.pl Initial commit 4 years ago
Returning arrays from subroutines.pl Initial commit 4 years ago
Returning data from subroutines.pl Initial commit 4 years ago
Scalar and list Context.pl Initial commit 4 years ago
Subroutine parameter default value.pl Initial commit 4 years ago
Subroutine with arguments defined before it is used.pl Initial commit 4 years ago
Swap array value by using the sub range.pl Initial commit 4 years ago
The last statement is the value to return.pl Initial commit 4 years ago
The loop displays each individual argument.pl Initial commit 4 years ago
The return values of the ref function- hash.pl Initial commit 4 years ago
The scope of my variables.pl Initial commit 4 years ago
The wantarray Function and User-Defined Subroutines.pl Initial commit 4 years ago
Use my to declare local variable.pl Initial commit 4 years ago
Using arrow operator to call a subroutine by its reference.pl Initial commit 4 years ago
Using closures.pl Initial commit 4 years ago
Using local.pl Initial commit 4 years ago
Using my if statement.pl Initial commit 4 years ago
Using my to declare the local variable in a subroutine.pl Initial commit 4 years ago
Using my.pl Initial commit 4 years ago
Using return statement.pl Initial commit 4 years ago
Using shift(@_) to get value passed into a subroutine.pl Initial commit 4 years ago
Using the return statement.pl Initial commit 4 years ago
Wantarray function.pl Initial commit 4 years ago
Write recursive subroutines.pl Initial commit 4 years ago
calculate 1000th element of standard Fibonacci sequence.pl Initial commit 4 years ago
displays all the arguments.pl Initial commit 4 years ago
factorial with recursive function.pl Initial commit 4 years ago
my ($program, $exitCode) = @_; creates two local variables, $program and $exitCode, from @_.pl Initial commit 4 years ago
my variable is initialized each time.pl Initial commit 4 years ago
my variable.pl Initial commit 4 years ago
my, local and global variable.pl Initial commit 4 years ago
nested subroutine.pl Initial commit 4 years ago
output the subroutine arguments using special variable @_.pl Initial commit 4 years ago
shift parameter.pl Initial commit 4 years ago
wantarray() returns true if caller wants list, false if caller wants scalar, and an undefined value if the caller wants nothing.pl Initial commit 4 years ago