Skip to content

Latest commit

 

History

History
30 lines (26 loc) · 578 Bytes

index.md

File metadata and controls

30 lines (26 loc) · 578 Bytes

Hello world, by name is []!

I build fancy webpages. I am a fan of:

  • dark coding environments
  • snarky black hoodies

My favorite color is:

Green Blue Purple Yellow Pink

Here are some of my favorite things to do:

  • pizzzzaaa

Any guesses what this code is for?

private static int mystery(int n)
{
  if(n==0 || n==1)
    return 1;
  else
    return mystery(n-1) + mystery(n-2);
}