Created
November 22, 2016 11:23
-
-
Save yyYank/460288863db3dffb3dcf29b70a738b00 to your computer and use it in GitHub Desktop.
この書き方知らなかった
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
fun highOrderOne(one : Int, f : ((one : Int) -> Int)) { | |
} | |
fun hoge(){ | |
highOrderOne(1) { x -> | |
x + 1 | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment