Skip to content

Instantly share code, notes, and snippets.

@nmwenz90
Forked from eddyruiz/mob-coding-challenge.js
Created June 29, 2017 02:12
Show Gist options
  • Select an option

  • Save nmwenz90/4860c15f13b756ed085c4ff497de86ec to your computer and use it in GitHub Desktop.

Select an option

Save nmwenz90/4860c15f13b756ed085c4ff497de86ec to your computer and use it in GitHub Desktop.
A saved mob programming session with Learn Teach Code!
// CODE CHALLENGE
// Fizz buzz: print 1 to 1000, replace 3 with fizz, 5 with buzz,
//hello
int c;
for(c=0; c<100; c++){
console.log(c);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment