Skip to content

Instantly share code, notes, and snippets.

@cennydavidsson
Last active October 17, 2015 13:06
Show Gist options
  • Select an option

  • Save cennydavidsson/5e37150bc12cf7e0e246 to your computer and use it in GitHub Desktop.

Select an option

Save cennydavidsson/5e37150bc12cf7e0e246 to your computer and use it in GitHub Desktop.
func add(x: Int?, y: Int?) -> Int? {
if let x = x, y = y where x.isEven {
return x + y
}
return .None
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment