Skip to content

Instantly share code, notes, and snippets.

@macbaszii
Created August 24, 2015 09:04
Show Gist options
  • Select an option

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

Select an option

Save macbaszii/5f5095837363267fac3f to your computer and use it in GitHub Desktop.
func curriedTimes(a: Int)(b: Int) -> Int {
return a * b
}
curriedTimes <^> Optional(5) <*> Optional(3)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment