Skip to content

Instantly share code, notes, and snippets.

View hcanfly's full-sized avatar

Gary Hanson hcanfly

  • Mountain View, CA
View GitHub Profile
@hcanfly
hcanfly / FizzBuzz.swift
Created September 2, 2014 02:57
Swift implementation of FizzBuzz
func fizzBuzz() {
for x in 1...100 {
switch (x%3, x%5) {
case (0,0):
println("FizzBuzz")
case (0,_):
println("Fizz")
case (_,0):
println("Buzz")