Created
November 26, 2018 08:07
-
-
Save gkossakowski/5bb2d53b562867726524092457e1c005 to your computer and use it in GitHub Desktop.
Scala vs Java compilation speed experiment
This file contains 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
class A1 { | |
String f1(String x) { return x; } | |
String f2(String x) { return x; } | |
. | |
. | |
String f100(String x) { return x; } | |
} |
This file contains 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
class A1 { | |
def f1(x: String): String = x | |
def f2(x: String): String = x | |
. | |
. | |
def f100(x: String): String = x | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment