Skip to content

Instantly share code, notes, and snippets.

@zakky-dev
Created October 31, 2017 07:27
Show Gist options
  • Save zakky-dev/0e5870600ed535ba828064bf548dbc4c to your computer and use it in GitHub Desktop.
Save zakky-dev/0e5870600ed535ba828064bf548dbc4c to your computer and use it in GitHub Desktop.
通らないと思ったら通った
func call2<T>(_ arg: T, _ c: (T) -> ()) {
c(arg)
}
call2(1) { arg in
print(arg)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment