Guest User

Untitled

a guest
Dec 17th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. # A function that reverses any paramter put in
  2. sub modify_name {
  3. $_[0] = reverse $_[0];
  4. }
  5.  
  6. my $name = 'Orange';
  7. modify_name($name); # call the function on the above declared variable, reversing it
  8. say $name; # prints: egnarO
Add Comment
Please, Sign In to add comment