Skip to content

Instantly share code, notes, and snippets.

@BoldBigflank
Last active August 29, 2015 14:12
Show Gist options
  • Save BoldBigflank/d1c09453df528fe51046 to your computer and use it in GitHub Desktop.
Save BoldBigflank/d1c09453df528fe51046 to your computer and use it in GitHub Desktop.
public static void PrintHello(int remaining){
print "Hello World\n";
if(remaining > 1) PrintHello(remaining-1);
}
PrintHello(1200);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment