Skip to content

Instantly share code, notes, and snippets.

@AlexJWayne
Created January 30, 2014 20:36
Show Gist options
  • Select an option

  • Save AlexJWayne/8718165 to your computer and use it in GitHub Desktop.

Select an option

Save AlexJWayne/8718165 to your computer and use it in GitHub Desktop.
function yell(n){
if (n > 0) {
return yell(n-1) + "a";
} else {
return "hiy";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment