Skip to content

Instantly share code, notes, and snippets.

@techthoughts2
Created February 29, 2016 05:13
Show Gist options
  • Save techthoughts2/42aff5ff5eb8bc80445a to your computer and use it in GitHub Desktop.
Save techthoughts2/42aff5ff5eb8bc80445a to your computer and use it in GitHub Desktop.
FizzBuzz
for ($i = 1; $i -le 100; $i++) {
if ($i % 15 -eq 0) {
"FizzBuzz"
} elseif ($i % 5 -eq 0) {
"Buzz"
} elseif ($i % 3 -eq 0) {
"Fizz"
} else {
$i
}
}
1..100 | { whatevs }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment