Created
December 4, 2015 08:22
-
-
Save toshi0383/cf74db743c637a2516fb to your computer and use it in GitHub Desktop.
エラーにならないんだ。。 #CodePiece
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| func exec(closure:Int->Void) { | |
| closure(4) | |
| } | |
| exec {number in | |
| print(number) // 4 | |
| let number = 3 | |
| print(number) // 3 | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment