Skip to content

Instantly share code, notes, and snippets.

@bdw
Created February 7, 2018 00:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bdw/1b640852caf5b68384bd17bb0141278d to your computer and use it in GitHub Desktop.
Save bdw/1b640852caf5b68384bd17bb0141278d to your computer and use it in GitHub Desktop.
#!/usr/bin/env perl
use strict;
use warnings;
sub foo {
my ($x) = @_;
return 0 if ($x == 0);
return foo $x - 1;
}
foo 3;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment