Skip to content

Instantly share code, notes, and snippets.

@macbaszii
Created August 24, 2015 10:18
Show Gist options
  • Select an option

  • Save macbaszii/5f38db7f98850183f4b4 to your computer and use it in GitHub Desktop.

Select an option

Save macbaszii/5f38db7f98850183f4b4 to your computer and use it in GitHub Desktop.
func half(a: Int) -> Int? {
return a % 2 == 0 ? a / 2 : .None
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment