Created
September 2, 2015 15:46
-
-
Save shigemk2/a17d5c2508be3b90ae22 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
def ほげ(n: Int): Int = { | |
n | |
} | |
println(ほげ(3)) | |
type ほげ = Int | |
def α(n: ほげ): ほげ = { | |
n | |
} | |
println(α(3)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment