Skip to content

Instantly share code, notes, and snippets.

@todashuta
Created January 3, 2025 19:43
Show Gist options
  • Select an option

  • Save todashuta/6a4a044527737a5ceeeb7f0710c9bd33 to your computer and use it in GitHub Desktop.

Select an option

Save todashuta/6a4a044527737a5ceeeb7f0710c9bd33 to your computer and use it in GitHub Desktop.
関数を返す関数
func add(_ x: Int) -> ((Int) -> Int) {
return { (_ y: Int) -> Int in
return x + y
}
}
add(1)(2) == 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment